有时候,你可能需要在所有文章底部添加自定义内容,可以将下面的代码添加到主题的 functions.php 文件中:
//在所有文章底部添加自定义内容
function wpkj_add_after_post_content($content) {
if(!is_feed() && !is_home() && is_singular() && is_main_query()) {
$content .= '你需要添加的自定义内容';
}
return $content;
}
add_filter('the_content', 'wpkj_add_after_post_content', 99, 1);
第 3 行代码使用了条件标签,禁止Feed和首页输出自定义内容。
关于条件标签,你可以看看:WordPress条件标签(Conditional Tags)
上面代码的最后一行,我们将函数 wpkj_add_after_post_content
挂载到钩子 the_content
中,而主题或插件可能也会同时挂载函数到这个钩子,那就存在一个优先级问题,也就是显示顺序。
第三个参数 99 是优先级,你可以通过适当修改这个数字来调整函数的优先级,修改该函数的显示顺序,数字越大,执行的顺序就越靠后。
来源:
https://www.wpdaxue.com/add-custom-content-after-all-wordpress-posts.html