// 在文章内容后添加反馈按钮(调整优先级) add_action('the_content', 'add_feedback_button', 99); // 添加了 99 优先级 function add_feedback_button($content) { if (is_single() && is_main_query()) { $button_html = '
'; // 添加了 clear:both $button_html .= '📢 链接失效?点击反馈'; // 添加 display:inline-block $button_html .= '
'; $content .= $button_html; } return $content; } // 在文章内容后添加反馈按钮 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 ''; } } btsjb123-光鸭·臻影社
btsjb123的头像-光鸭·臻影社
光鸭·臻影社 有你更精彩