{"id":53,"date":"2021-07-28T15:44:07","date_gmt":"2021-07-28T07:44:07","guid":{"rendered":"https:\/\/litepress.cn\/cravatar\/?page_id=53"},"modified":"2023-08-15T11:23:08","modified_gmt":"2023-08-15T03:23:08","slug":"for-wordpress","status":"publish","type":"post","link":"https:\/\/cravatar.com\/developer\/for-wordpress","title":{"rendered":"\u4e3a WordPress \u96c6\u6210"},"content":{"rendered":"\n<div class=\"wp-block-group has-contrast-color has-text-color has-background\" style=\"background-color:#f0f5ff\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p>1\u3001\u6ce8\u610f\uff0c\u4ee5\u4e0b\u4e3b\u9898\u56e0\u4e3a\u4f7f\u7528\u81ea\u6709\u7684\u5934\u50cf\u65b9\u6848\uff0c\u5b8c\u5168\u5c4f\u853d\u4e86 Gravatar\uff0c\u6240\u4ee5\u4e5f\u4e0d\u652f\u6301 Cravatar\uff1a<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>7b2<\/li>\n\n\n\n<li>\u65e5\u4e3b\u9898<\/li>\n\n\n\n<li>\u5b50\u6bd4\u4e3b\u9898<\/li>\n<\/ul>\n\n\n\n<p>2\u3001\u5bf9\u4e8e\u6b64\u7c7b\u4e3b\u9898\u3001\u63d2\u4ef6\u4ecd\u9700\u9002\u914d Cravatar\uff1f\u8bf7\u5230<a href=\"https:\/\/cravatar.com\/forums\" data-type=\"link\" data-id=\"https:\/\/cravatar.com\/forums\" target=\"_blank\" rel=\"noreferrer noopener\">\u652f\u6301\u8bba\u575b\u4e2d\u5f00\u8d34<sup>\u2197<\/sup><\/a>\u83b7\u53d6\u5e2e\u52a9\u3002<\/p>\n\n\n\n<p>3\u3001\u5982\u679c\u60a8\u662f\u666e\u901a\u7528\u6237\u4e0d\u60f3\u8981\u6539\u4ee3\u7801\uff0c\u5feb\u901f\u4f7f\u7528\u8bf7\u5b89\u88c5<a rel=\"noreferrer noopener\" href=\"https:\/\/wpavatar.com\/\" data-type=\"link\" data-id=\"https:\/\/wpavatar.com\/\" target=\"_blank\">\u6587\u6d3e\u5934\u50cf\uff08WPAvatar\uff09<sup>\u2197<\/sup><\/a>\u63d2\u4ef6\u3002<\/p>\n<\/div><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">\u96c6\u6210\u4ee3\u7801<\/h2>\n\n\n\n<p>\u60a8\u53ef\u4ee5\u5f88\u65b9\u4fbf\u7684\u4e3a WordPress \u96c6\u6210 Cravatar \u5934\u50cf\u670d\u52a1\uff0c\u53ea\u9700\u8981\u5c06\u4ee5\u4e0b\u4ee3\u7801\u52a0\u5165\u60a8\u7684\u63d2\u4ef6\u6216\u4e3b\u9898\u7684 functions.php \u91cc\u5373\u53ef\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-prismatic-blocks\"><code class=\"language-php\">\nif ( ! function_exists( &#039;get_cravatar_url&#039; ) ) {\n    \/**\n     * \u66ff\u6362 Gravatar \u5934\u50cf\u4e3a Cravatar \u5934\u50cf\n     *\n     * Cravatar \u662f Gravatar \u5728\u4e2d\u56fd\u7684\u5b8c\u7f8e\u66ff\u4ee3\u65b9\u6848\uff0c\u60a8\u53ef\u4ee5\u5728 https:\/\/cravatar.com \u66f4\u65b0\u60a8\u7684\u5934\u50cf\n     *\/\n    function get_cravatar_url( $url ) {\n        $sources = array(\n            &#039;www.gravatar.com&#039;,\n            &#039;0.gravatar.com&#039;,\n            &#039;1.gravatar.com&#039;,\n            &#039;2.gravatar.com&#039;,\n            &#039;secure.gravatar.com&#039;,\n            &#039;cn.gravatar.com&#039;,\n            &#039;gravatar.com&#039;,\n        );\n        return str_replace( $sources, &#039;cravatar.cn&#039;, $url );\n    }\n    add_filter( &#039;um_user_avatar_url_filter&#039;, &#039;get_cravatar_url&#039;, 1 );\n    add_filter( &#039;bp_gravatar_url&#039;, &#039;get_cravatar_url&#039;, 1 );\n    add_filter( &#039;get_avatar_url&#039;, &#039;get_cravatar_url&#039;, 1 );\n}\nif ( ! function_exists( &#039;set_defaults_for_cravatar&#039; ) ) {\n    \/**\n     * \u66ff\u6362 WordPress \u8ba8\u8bba\u8bbe\u7f6e\u4e2d\u7684\u9ed8\u8ba4\u5934\u50cf\n     *\/\n    function set_defaults_for_cravatar( $avatar_defaults ) {\n        $avatar_defaults[&#039;gravatar_default&#039;] = &#039;Cravatar \u6807\u5fd7&#039;;\n        return $avatar_defaults;\n    }\n    add_filter( &#039;avatar_defaults&#039;, &#039;set_defaults_for_cravatar&#039;, 1 );\n}\nif ( ! function_exists( &#039;set_user_profile_picture_for_cravatar&#039; ) ) {\n    \/**\n     * \u66ff\u6362\u4e2a\u4eba\u8d44\u6599\u5361\u4e2d\u7684\u5934\u50cf\u4e0a\u4f20\u5730\u5740\n     *\/\n    function set_user_profile_picture_for_cravatar() {\n        return &#039;&lt;a href=&quot;https:\/\/cravatar.com&quot; target=&quot;_blank&quot;&gt;\u60a8\u53ef\u4ee5\u5728 Cravatar \u4fee\u6539\u60a8\u7684\u8d44\u6599\u56fe\u7247&lt;\/a&gt;&#039;;\n    }\n    add_filter( &#039;user_profile_picture_description&#039;, &#039;set_user_profile_picture_for_cravatar&#039;, 1 );\n}\n\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>1\u3001\u6ce8\u610f\uff0c\u4ee5\u4e0b\u4e3b\u9898\u56e0\u4e3a\u4f7f\u7528\u81ea\u6709\u7684\u5934\u50cf\u65b9\u6848\uff0c\u5b8c\u5168\u5c4f\u853d\u4e86 Gravatar\uff0c\u6240\u4ee5\u4e5f\u4e0d\u652f\u6301 Cravatar\uff1a 2\u3001\u5bf9\u4e8e\u6b64\u7c7b\u4e3b\u9898\u3001\u63d2\u4ef6\u4ecd ... <\/p>\n<p class=\"read-more-container\"><a title=\"\u4e3a WordPress \u96c6\u6210\" class=\"read-more button\" href=\"https:\/\/cravatar.com\/developer\/for-wordpress#more-53\" aria-label=\"\u66f4\u591a \u4e3a WordPress \u96c6\u6210\">\u7ee7\u7eed\u9605\u8bfb<\/a><\/p>\n","protected":false},"author":18731,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10],"tags":[25,29,30,26],"class_list":["post-53","post","type-post","status-publish","format-standard","hentry","category-integration","tag-cms","tag-wordpress","tag-wpavatar","tag-26","no-featured-image-padding"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u4e3a WordPress \u96c6\u6210 - Cravatar \u5f00\u53d1\u6587\u6863<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cravatar.com\/developer\/for-wordpress\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u4e3a WordPress \u96c6\u6210 - Cravatar \u5f00\u53d1\u6587\u6863\" \/>\n<meta property=\"og:description\" content=\"1\u3001\u6ce8\u610f\uff0c\u4ee5\u4e0b\u4e3b\u9898\u56e0\u4e3a\u4f7f\u7528\u81ea\u6709\u7684\u5934\u50cf\u65b9\u6848\uff0c\u5b8c\u5168\u5c4f\u853d\u4e86 Gravatar\uff0c\u6240\u4ee5\u4e5f\u4e0d\u652f\u6301 Cravatar\uff1a 2\u3001\u5bf9\u4e8e\u6b64\u7c7b\u4e3b\u9898\u3001\u63d2\u4ef6\u4ecd ... \u7ee7\u7eed\u9605\u8bfb\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cravatar.com\/developer\/for-wordpress\" \/>\n<meta property=\"og:site_name\" content=\"Cravatar \u5f00\u53d1\u6587\u6863\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-28T07:44:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-15T03:23:08+00:00\" \/>\n<meta name=\"author\" content=\"\u83ab\u8482\u5947\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u83ab\u8482\u5947\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/cravatar.com\/developer\/for-wordpress#article\",\"isPartOf\":{\"@id\":\"https:\/\/cravatar.com\/developer\/for-wordpress\"},\"author\":{\"name\":\"\u83ab\u8482\u5947\",\"@id\":\"https:\/\/cravatar.com\/developer\/#\/schema\/person\/5b425afc1c25eaa3bd02b47634fa9ba8\"},\"headline\":\"\u4e3a WordPress \u96c6\u6210\",\"datePublished\":\"2021-07-28T07:44:07+00:00\",\"dateModified\":\"2023-08-15T03:23:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cravatar.com\/developer\/for-wordpress\"},\"wordCount\":10,\"publisher\":{\"@id\":\"https:\/\/cravatar.com\/developer\/#organization\"},\"keywords\":[\"CMS\",\"WordPress\",\"WPAvatar\",\"\u96c6\u6210\"],\"articleSection\":[\"CMS \u96c6\u6210\"],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cravatar.com\/developer\/for-wordpress\",\"url\":\"https:\/\/cravatar.com\/developer\/for-wordpress\",\"name\":\"\u4e3a WordPress \u96c6\u6210 - Cravatar \u5f00\u53d1\u6587\u6863\",\"isPartOf\":{\"@id\":\"https:\/\/cravatar.com\/developer\/#website\"},\"datePublished\":\"2021-07-28T07:44:07+00:00\",\"dateModified\":\"2023-08-15T03:23:08+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/cravatar.com\/developer\/for-wordpress#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cravatar.com\/developer\/for-wordpress\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cravatar.com\/developer\/for-wordpress#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/cravatar.com\/developer\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u4e3a WordPress \u96c6\u6210\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cravatar.com\/developer\/#website\",\"url\":\"https:\/\/cravatar.com\/developer\/\",\"name\":\"Cravatar \u5f00\u53d1\u6587\u6863\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/cravatar.com\/developer\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cravatar.com\/developer\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/cravatar.com\/developer\/#organization\",\"name\":\"Cravatar \u5f00\u53d1\u6587\u6863\",\"url\":\"https:\/\/cravatar.com\/developer\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/cravatar.com\/developer\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cravatar.com\/developer\/wp-content\/uploads\/sites\/18\/2023\/08\/cr-logo-02.png\",\"contentUrl\":\"https:\/\/cravatar.com\/developer\/wp-content\/uploads\/sites\/18\/2023\/08\/cr-logo-02.png\",\"width\":870,\"height\":225,\"caption\":\"Cravatar \u5f00\u53d1\u6587\u6863\"},\"image\":{\"@id\":\"https:\/\/cravatar.com\/developer\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/cravatar.com\/developer\/#\/schema\/person\/5b425afc1c25eaa3bd02b47634fa9ba8\",\"name\":\"\u83ab\u8482\u5947\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/cravatar.com\/developer\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/cn.cravatar.com\/avatar\/8f245fa2c739817938d91384dc1b64b438fe89bd356f67798c20e483ff580e52?s=96&r=g&cache-key=8f245fa2c739817938d91384dc1b64b438fe89bd356f67798c20e483ff580e52\",\"contentUrl\":\"https:\/\/cn.cravatar.com\/avatar\/8f245fa2c739817938d91384dc1b64b438fe89bd356f67798c20e483ff580e52?s=96&r=g&cache-key=8f245fa2c739817938d91384dc1b64b438fe89bd356f67798c20e483ff580e52\",\"caption\":\"\u83ab\u8482\u5947\"},\"description\":\"\u4e13\u6ce8\u4e8e\u8425\u9500\u81ea\u52a8\u5316\u53ca SEO\/SEM\",\"sameAs\":[\"https:\/\/www.Modiqi.com\/\"],\"url\":\"https:\/\/cravatar.com\/developer\/author\/modiqi\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u4e3a WordPress \u96c6\u6210 - Cravatar \u5f00\u53d1\u6587\u6863","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/cravatar.com\/developer\/for-wordpress","og_locale":"zh_CN","og_type":"article","og_title":"\u4e3a WordPress \u96c6\u6210 - Cravatar \u5f00\u53d1\u6587\u6863","og_description":"1\u3001\u6ce8\u610f\uff0c\u4ee5\u4e0b\u4e3b\u9898\u56e0\u4e3a\u4f7f\u7528\u81ea\u6709\u7684\u5934\u50cf\u65b9\u6848\uff0c\u5b8c\u5168\u5c4f\u853d\u4e86 Gravatar\uff0c\u6240\u4ee5\u4e5f\u4e0d\u652f\u6301 Cravatar\uff1a 2\u3001\u5bf9\u4e8e\u6b64\u7c7b\u4e3b\u9898\u3001\u63d2\u4ef6\u4ecd ... \u7ee7\u7eed\u9605\u8bfb","og_url":"https:\/\/cravatar.com\/developer\/for-wordpress","og_site_name":"Cravatar \u5f00\u53d1\u6587\u6863","article_published_time":"2021-07-28T07:44:07+00:00","article_modified_time":"2023-08-15T03:23:08+00:00","author":"\u83ab\u8482\u5947","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"\u83ab\u8482\u5947","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"1 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cravatar.com\/developer\/for-wordpress#article","isPartOf":{"@id":"https:\/\/cravatar.com\/developer\/for-wordpress"},"author":{"name":"\u83ab\u8482\u5947","@id":"https:\/\/cravatar.com\/developer\/#\/schema\/person\/5b425afc1c25eaa3bd02b47634fa9ba8"},"headline":"\u4e3a WordPress \u96c6\u6210","datePublished":"2021-07-28T07:44:07+00:00","dateModified":"2023-08-15T03:23:08+00:00","mainEntityOfPage":{"@id":"https:\/\/cravatar.com\/developer\/for-wordpress"},"wordCount":10,"publisher":{"@id":"https:\/\/cravatar.com\/developer\/#organization"},"keywords":["CMS","WordPress","WPAvatar","\u96c6\u6210"],"articleSection":["CMS \u96c6\u6210"],"inLanguage":"zh-Hans"},{"@type":"WebPage","@id":"https:\/\/cravatar.com\/developer\/for-wordpress","url":"https:\/\/cravatar.com\/developer\/for-wordpress","name":"\u4e3a WordPress \u96c6\u6210 - Cravatar \u5f00\u53d1\u6587\u6863","isPartOf":{"@id":"https:\/\/cravatar.com\/developer\/#website"},"datePublished":"2021-07-28T07:44:07+00:00","dateModified":"2023-08-15T03:23:08+00:00","breadcrumb":{"@id":"https:\/\/cravatar.com\/developer\/for-wordpress#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cravatar.com\/developer\/for-wordpress"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/cravatar.com\/developer\/for-wordpress#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/cravatar.com\/developer\/"},{"@type":"ListItem","position":2,"name":"\u4e3a WordPress \u96c6\u6210"}]},{"@type":"WebSite","@id":"https:\/\/cravatar.com\/developer\/#website","url":"https:\/\/cravatar.com\/developer\/","name":"Cravatar \u5f00\u53d1\u6587\u6863","description":"","publisher":{"@id":"https:\/\/cravatar.com\/developer\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cravatar.com\/developer\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-Hans"},{"@type":"Organization","@id":"https:\/\/cravatar.com\/developer\/#organization","name":"Cravatar \u5f00\u53d1\u6587\u6863","url":"https:\/\/cravatar.com\/developer\/","logo":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/cravatar.com\/developer\/#\/schema\/logo\/image\/","url":"https:\/\/cravatar.com\/developer\/wp-content\/uploads\/sites\/18\/2023\/08\/cr-logo-02.png","contentUrl":"https:\/\/cravatar.com\/developer\/wp-content\/uploads\/sites\/18\/2023\/08\/cr-logo-02.png","width":870,"height":225,"caption":"Cravatar \u5f00\u53d1\u6587\u6863"},"image":{"@id":"https:\/\/cravatar.com\/developer\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/cravatar.com\/developer\/#\/schema\/person\/5b425afc1c25eaa3bd02b47634fa9ba8","name":"\u83ab\u8482\u5947","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/cravatar.com\/developer\/#\/schema\/person\/image\/","url":"https:\/\/cn.cravatar.com\/avatar\/8f245fa2c739817938d91384dc1b64b438fe89bd356f67798c20e483ff580e52?s=96&r=g&cache-key=8f245fa2c739817938d91384dc1b64b438fe89bd356f67798c20e483ff580e52","contentUrl":"https:\/\/cn.cravatar.com\/avatar\/8f245fa2c739817938d91384dc1b64b438fe89bd356f67798c20e483ff580e52?s=96&r=g&cache-key=8f245fa2c739817938d91384dc1b64b438fe89bd356f67798c20e483ff580e52","caption":"\u83ab\u8482\u5947"},"description":"\u4e13\u6ce8\u4e8e\u8425\u9500\u81ea\u52a8\u5316\u53ca SEO\/SEM","sameAs":["https:\/\/www.Modiqi.com\/"],"url":"https:\/\/cravatar.com\/developer\/author\/modiqi"}]}},"_links":{"self":[{"href":"https:\/\/cravatar.com\/developer\/wp-json\/wp\/v2\/posts\/53","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cravatar.com\/developer\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cravatar.com\/developer\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cravatar.com\/developer\/wp-json\/wp\/v2\/users\/18731"}],"replies":[{"embeddable":true,"href":"https:\/\/cravatar.com\/developer\/wp-json\/wp\/v2\/comments?post=53"}],"version-history":[{"count":0,"href":"https:\/\/cravatar.com\/developer\/wp-json\/wp\/v2\/posts\/53\/revisions"}],"wp:attachment":[{"href":"https:\/\/cravatar.com\/developer\/wp-json\/wp\/v2\/media?parent=53"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cravatar.com\/developer\/wp-json\/wp\/v2\/categories?post=53"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cravatar.com\/developer\/wp-json\/wp\/v2\/tags?post=53"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}