子比主题文章浏览量超过一定数量出现自定义热帖图标

修改源码

下方代码加入到 function.php 中即可

/*文章开头大于50浏览量出现热帖图片*/
add_filter('the_content', 'add_lu_content_beforde');
function add_lu_content_beforde( $content ) {
 if( !is_feed() && !is_home() && is_singular() && is_main_query() ) {
   $viewnum= (int) get_post_meta( get_the_ID(), 'views', true );
      if ($viewnum > 50){  //这里是浏览量大于50
        $before_content = '<img style="position: absolute; right: 10px;  pointer-events: none; z-index: 10;" src="https://img.lovelu.top/2024/04/retie.png" alt="热帖" >'; //图片地址修改成自己的
      $lu = $before_content . $content;
        }
   else{$lu = $content;}}
 return $lu;
}

自选图片

- - - - - 本页内容已结束,喜欢请分享 - - - - -

感谢您的来访,获取更多精彩文章请收藏本站。

© 版权声明
THE END
喜欢就支持一下吧
点赞251 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容