WordPress给每个文章开头或者末尾添加内容

有需求想要给每个文章开头或者末尾添加内容,百度搜了些代码,感觉好用,贴上来备忘。

使用方法:在主题文件的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 = '[c-alert type="info"]安装本站所有软件前请先关闭杀毒软件,本站所有软件绿色无毒,否则可能出现安装失败[/c-alert]'; $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; }}

添加代码后,如发现首页显示文章的描述为空,

在文章内容开头添加固定内容的代码可修改为下列代码,亲测有效

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;
    }
    
    return $content; // 返回原始的 $content
}

你可能感兴趣的:(javascript,开发语言,ecmascript)