我在WordPress上使用this plugin,我需要更改“按评论排序”的工作方式,并将其更改为“按视图排序”。我将other plugin用于视图,所以我试图弄清楚如何使它起作用。
我在carrousel插件上找到了这些行
case 'comment_count':
$order_value=wp_count_comments($post->id);
$order_value=$order_value->total_comments;
break;
所以我尝试使用variables of the Popular Posts plugin
进行更改case 'comment_count':
$order_value=update_views_count($post->id);
$order_value=$order_value->views;
break;
但是,当然,它没有用,因为我不太了解这个问题,并且轮播中的帖子不是按访问顺序排列的。
我想这个主意是因为我只了解php,但不知道如何通过访问正在使用的轮播来实现订单。