Post order by views in admin panel

Posted in: Newspaper
Post count: 7

Hi there,
is it possible to sort posts by number of views in admin panel?
Best regards
Marco

Post count: 22421

Hello,

Sorry but you cannot sort posts in the admin panel except by date. Asc or Dsc
You can maybe find a plugin that can offer this functionality.

Thanks.

Post count: 7

I have tried many plugins but all plugins work with their views count,
Could you tell me which is the code for the count in post in Newspaper theme?
Thanks Marco

Post count: 22421

Sure.
The code can be found here: https://www.screencast.com/t/uf5CDBIXEjB
Thanks.

Post count: 7

Thanks You bogdan,
Could you help me with this function?

function set_post_order_in_admin( $wp_query ) {
global $pagenow;
if ( is_admin() && 'edit.php' == $pagenow && !isset($_GET['orderby'])) {
$wp_query->set( 'orderby', 'xxxxxxxx' );
$wp_query->set( 'order', 'DESC' );
}
}
add_filter('pre_get_posts', 'set_post_order_in_admin' );

xxxxxxxx = td_page_views, with Title work fine

Post count: 20688

Hi,

I really could not say what to do in this case. The view field that the theme ads is not supposed to be sorted in any way, each post will have it’s view count displayed but not sorted.
Maybe you could do it by continuing to test. There might be useful information online about sorting the posts page by a value. Sorry for the inconvenience.

Thanks

Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newspaper’ is closed to new topics and replies.