WordPress文章点赞功能相信大家已经能够实现了,那么该怎么获取到文章点赞数量、和文章点赞排行文章呢?这篇WordPress教程为你揭晓:其实WordPre…
WordPress文章点赞功能相信大家已经能够实现了,那么该怎么获取到文章点赞数量、和文章点赞排行文章呢?
这篇WordPress教程为你揭晓:
其实WordPress文章点赞量排行的实现原理跟获取最新文章、热门文章大同小异,只添加了’meta_key’ => ‘dotGood’ 字段,具体方法请看下面代码:
<?php$args = array(\'ignore_sticky_posts\' => 1,\'meta_key\' => \'dotGood\',\'orderby\' => \'meta_value_num\',\'showposts\' => 20);query_posts($args); if ( have_posts() ) : ?><?php while ( have_posts() ) : the_post(); ?><a href=\"<?php the_permalink(); ?>\" rel=\"external nofollow\" target=\"_blank\"><?php echo mb_strimwidth(get_the_title(), 0, 46,\'…\'); ?></a><?php endwhile; endif;?>
使用方法
将上面代码放到需要调用文章点赞量排行的页面,修改样式即可。
扫码关注wp主题君
精选优质免费WordPress主题模板,分享最新WordPress实用建站教程!
记住我们的网址:ztJun.com
声明:本文由老胡发布,本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。