智慧建站平台,千套网站模板,免费随心选!

您现在的位置: 首页>>网站教程

WordPress怎么管理页面底部自定义文字

来源: 发布时间:2019-11-09热度:527 ℃
1、首先找到向所有文章底部添加自定义内容的代码//在所有文章底部添加自定义内容function add_after_post_content($content) {if(!is_feed() && !···

WordPress怎么管理页面底部自定义文字

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