选择频道搜索
1、首先找到向所有文章底部添加自定义内容的代码
//在所有文章底部添加自定义内容functionadd_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');