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

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

wordpress怎么自动在正文内容后添加内容

来源: 发布时间:2019-11-16热度:229 ℃
wordpress怎么自动在正文内容后添加内容    很多时候,你都需要在文章内容后面添加一些信息,例如订阅,文章分享,收藏和Creative Commons协议声明等。 要在文章尾部自动添加内容的话···

wordpress怎么自动在正文内容后添加内容

wordpress怎么自动在正文内容后添加内容    

很多时候,你都需要在文章内容后面添加一些信息,例如订阅,文章分享,收藏和Creative Commons协议声明等。 

要在文章尾部自动添加内容的话,只需要在主题的function.php里添加一下代码: 

function insertFootNote($content) { 
    if(!is_feed() && !is_home()) { 
        $content.= "<div class=&#39;subscribe&#39;>"; 
        $content.= "<h4>Enjoyed this article?</h4>"; 
        $content.= "<p>Subscribe to our <a href=&#39;http://feed.php.cn/&#39;>RSS feed</a> and never miss a recipe!</p>"; 
        $content.= "</div>"; 
    } 
    return $content; 
} 
add_filter (&#39;the_content&#39;, &#39;insertFootNote&#39;);
登录后复制

本文地址:http://ezhuoer.com