Вот, был найден код на просторах интернета. Скажите пожалуйста, можно ли изменить этот код, что бы записи по популярности выводились не по комментариям, а по их просмотрам?
<?php
function filter_where($where = '') {
$where .= " AND post_date > '" . date('Y-m-d', strtotime('-30 days')) . "'"; //вывод за 30 дней
return $where;
}
add_filter('posts_where', 'filter_where');
query_posts('cat=3&post_type=post&posts_per_page=5&orderby=comment_count&order=DESC'); //5 записей по количеству комментариев, расположены по возрастанию
while (have_posts()): the_post(); ?>
<li><span><em>.</em></span><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php
endwhile;
wp_reset_query();
?>