// 在文章内容后添加反馈按钮 add_action('the_content', 'add_feedback_button'); function add_feedback_button($content) { if (is_single() && is_main_query()) { $button_html = '
'; $button_html .= '📢 链接失效?点击反馈'; $button_html .= '
'; $content .= $button_html; } return $content; } // 在页面底部添加JavaScript,用于自动填充评论框 add_action('wp_footer', 'feedback_js'); function feedback_js() { if (is_single()) { echo ''; } } lln76452-光鸭·臻影社
lln76452的头像-光鸭·臻影社
光鸭·臻影社 有你更精彩