WordPress文章底部添加自定义内容的教程

有时候,可能需要在所有文章底部添加自定义内容,可以将下面的代码添加到主题的functions.php文件中:

//在所有文章底部添加自定义内容
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');

第3行代码使用了条件标签,禁止Feed和首页输出自定义内容。

👋 感谢您的观看!

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享