当前位置:   article > 正文

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

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; }}

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

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

  1. add_filter('the_content', 'add_zm_content_beforde');
  2. function add_zm_content_beforde( $content ) {
  3. if( !is_feed() && !is_home() && is_singular() && is_main_query() ) {
  4. $before_content = '你要显示的内容';
  5. $zm = $before_content . $content;
  6. return $zm;
  7. }
  8. return $content; // 返回原始的 $content
  9. }

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号