1、首先找到向所有文章底部添加自定义内容的代码
//在所有文章底部添加自定义内容 function add_after_post_content($content) { if(!is_feed() && !is_home() && is_singular() && is_main_query()) { $content .= '你需要添加的自定义内容'; } return $content; } add_filter('the_content', 'add_after_post_content');登录后复制
本文地址:http://ezhuoer.com