{"id":732,"date":"2024-10-23T14:38:28","date_gmt":"2024-10-23T06:38:28","guid":{"rendered":"https:\/\/www.cuishaofeng.com\/?p=732"},"modified":"2024-10-23T14:38:30","modified_gmt":"2024-10-23T06:38:30","slug":"wordpress-%e6%96%87%e7%ab%a0%e6%9c%aa%e5%b0%be%e8%87%aa%e5%8a%a8%e6%b7%bb%e5%8a%a0%e4%b8%80%e4%b8%aa%e4%bd%9c%e8%80%85%e4%bf%a1%e6%81%af%e6%a1%86","status":"publish","type":"post","link":"https:\/\/www.cuishaofeng.com\/?p=732","title":{"rendered":"WordPress \u6587\u7ae0\u672a\u5c3e\u81ea\u52a8\u6dfb\u52a0\u4e00\u4e2a\u4f5c\u8005\u4fe1\u606f\u6846"},"content":{"rendered":"<div id=\"core-ai-summary-tool\"><\/div>\n<p>\u5982\u679c\u4f60\u60f3\u5728\u4f60\u7684\u6587\u7ae0\u672b\u5c3e\u6dfb\u52a0\u4e00\u4e2a\u4f5c\u8005\u63d0\u793a\u6846,\u6765\u8bc1\u660e\u8fd9\u7bc7\u6587\u7ae0\u51fa\u5904,\u58f0\u660e\u6216\u5176\u4ed6\u4e00\u4e9b\u7ed9\u7528\u6237\u6ce8\u610f\u4e8b\u9879;<\/p>\n\n\n\n<p>\u5c06\u4ee5\u4e0b\u4ee3\u7801\u6dfb\u52a0\u5230\u5f53\u524d\u4e3b\u9898functions.php\u4e2d\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>function wp_author_info_box( $content ) {\nglobal $post;\n\/\/ \u68c0\u6d4b\u6587\u7ae0\u4e0e\u6587\u7ae0\u4f5c\u8005\nif ( is_single() &amp;&amp; isset( $post->post_author ) ) {\n\/\/ \u83b7\u53d6\u4f5c\u8005\u540d\u79f0\n$display_name = get_the_author_meta( 'display_name', $post->post_author );\n\/\/ \u5982\u679c\u6ca1\u6709\u540d\u79f0,\u4f7f\u7528\u6635\u79f0\nif ( empty( $display_name ) )\n$display_name = get_the_author_meta( 'nickname', $post->post_author );\n\/\/ \u4f5c\u8005\u7684\u4e2a\u4eba\u4fe1\u606f\n$user_description = get_the_author_meta( 'user_description', $post->post_author );\n\/\/ \u83b7\u53d6\u4f5c\u8005\u7684\u7f51\u7ad9\n$user_website = get_the_author_meta('url', $post->post_author);\n\/\/ \u4f5c\u8005\u5b58\u6863\u9875\u9762\u94fe\u63a5\n$user_posts = get_author_posts_url( get_the_author_meta( 'ID' , $post->post_author));\nif ( ! empty( $display_name ) )\n$author_details = '&lt;div class=\"author-name\">\u5173\u4e8e ' . $display_name . '&lt;\/div>';\nif ( ! empty( $user_description ) )\n\/\/ \u4f5c\u8005\u5934\u50cf\n$author_details .= '&lt;div class=\"author-details\">' . get_avatar( get_the_author_meta('user_email') , 90 ) . nl2br( $user_description ). '&lt;\/div>';\n$author_details .= '&lt;div class=\"author-links\">&lt;a href=\"'. $user_posts .'\">\u67e5\u770b ' . $display_name . ' \u6240\u6709\u6587\u7ae0&lt;\/a>';\n\/\/ \u68c0\u67e5\u4f5c\u8005\u5728\u4e2a\u4eba\u8d44\u6599\u4e2d\u662f\u5426\u586b\u5199\u4e86\u7f51\u7ad9\nif ( ! empty( $user_website ) ) {\n\/\/ \u663e\u793a\u4f5c\u8005\u7684\u7f51\u7ad9\u94fe\u63a5\n$author_details .= ' | &lt;a href=\"' . $user_website .'\" target=\"_blank\" rel=\"nofollow\">\u7f51\u7ad9&lt;\/a>&lt;\/div>';\n} else {\n\/\/ \u5982\u679c\u4f5c\u8005\u6ca1\u6709\u586b\u5199\u7f51\u7ad9\u5219\u4e0d\u663e\u793a\u7f51\u7ad9\u94fe\u63a5\n$author_details .= '&lt;\/div>';\n}\n\/\/ \u5728\u6587\u7ae0\u540e\u9762\u6dfb\u52a0\u4f5c\u8005\u4fe1\u606f\n$content = $content . '&lt;footer class=\"author-bio-section\" >' . $author_details . '&lt;\/footer>';\n}\nreturn $content;\n}\n\/\/ \u6dfb\u52a0\u8fc7\u6ee4\u5668\nadd_action( 'the_content', 'wp_author_info_box' );\n\/\/ \u5141\u8bb8HTML\nremove_filter('pre_user_description', 'wp_filter_kses');\n\u518d\u5c06\u914d\u5957\u7684CSS\u6dfb\u52a0\u5230\u4e3b\u9898\u6837\u5f0f\u6587\u4ef6style.css\u4e2d\uff1a\n.author-bio-section {\nbackground: #fff;\nfloat: left;\nwidth: 100%;\nmargin: 10px 0;\npadding: 15px;\nborder: 1px dashed #ccc;\n}\n.author-name {\nfont-size: 15px;\nfont-weight: bold;\nmargin: 0 0 5px 0;\n}\n.author-details img {\nfloat: left;\nwidth: 48px;\nheight: auto;\nmargin: 5px 15px 0 0;\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u5982\u679c\u4f60\u60f3\u5728\u4f60\u7684\u6587\u7ae0\u672b\u5c3e\u6dfb\u52a0\u4e00\u4e2a\u4f5c\u8005\u63d0\u793a\u6846,\u6765\u8bc1\u660e\u8fd9\u7bc7\u6587\u7ae0\u51fa\u5904,\u58f0\u660e\u6216\u5176\u4ed6\u4e00\u4e9b\u7ed9\u7528\u6237\u6ce8\u610f\u4e8b\u9879; \u5c06\u4ee5\u4e0b\u4ee3\u7801\u6dfb\u52a0\u5230\u5f53\u524d\u4e3b\u9898functions.php\u4e2d\uff1a<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[],"topic":[],"_links":{"self":[{"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=\/wp\/v2\/posts\/732"}],"collection":[{"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=732"}],"version-history":[{"count":1,"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=\/wp\/v2\/posts\/732\/revisions"}],"predecessor-version":[{"id":733,"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=\/wp\/v2\/posts\/732\/revisions\/733"}],"wp:attachment":[{"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=732"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=732"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=732"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftopic&post=732"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}