在不修改主题正文模板文件的情况下,想在正文开头和末尾添加固定内容,或者在已发表的文章中添加固定内容又不想重新编辑文章,可以通过下面的代码实现。
会用到过滤器钩子add_filter:
add_filter( 'the_content', '' )
将下面代码添加到当前主题函数模板functions.php中。
在文章内容开头添加固定内容
add_filter('the_content', 'add_zm_content_beforde');
function add_zm_content_beforde( $content ) {
if( !is_feed() && !is_home() && is_singular() && is_main_query() ) {
$before_content = '在文章内容开头添加固定内容';
$zm = $before_content . $content;
}
return $zm;
}
在文章内容末尾添加固定内容
add_filter('the_content', 'add_zm_content_after');
function add_zm_content_after( $content ) {
if( !is_feed() && !is_home() && is_singular() && is_main_query() ) {
$after_content = '在文章内容末尾添加固定内容';
$zm = $content . $after_content;
}
return $zm;
}
同时在开头和末尾添加固定内容
add_filter('the_content', 'add_zm_content_before_and_after');
function add_zm_content_before_and_after( $content ) {
if( !is_feed() && !is_home() && is_singular() && is_main_query() ) {
$after_content = '在文章内容末尾添加固定内容';
$before_content = '在文章内容开头添加固定内容';
$zm = $before_content . $content . $after_content;
}
return $zm;
}
只在自定义文章类型“books”文章末尾添加固定内容
add_filter('the_content', 'add_zm_content_after_books_custom_post_type');
function add_zm_content_after_books_custom_post_type( $content ) {
if (is_singular( "books" )){
$new_books_content = '只在自定义帖子类型“books”文章末尾添加固定内容';
$aftercontent = $new_books_content;
$zm = $content . $aftercontent;
return $zm;
} else {
return $content;
}
}
1、文章版权归作者所有,未经允许请勿转载。
2、本站所有文章,如无特殊说明或标注,均为本站原创发布。任何在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们邮箱:526009505@qq.com进行处理。
3、咨询请联系QQ:526009505
2、本站所有文章,如无特殊说明或标注,均为本站原创发布。任何在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们邮箱:526009505@qq.com进行处理。
3、咨询请联系QQ:526009505