Skip to content

Instantly share code, notes, and snippets.

@chillybin
Last active December 20, 2015 03:08
Show Gist options
  • Save chillybin/6060875 to your computer and use it in GitHub Desktop.
Save chillybin/6060875 to your computer and use it in GitHub Desktop.
Template Name: Galleries - Most Viewed
// this in page-most-viewed.php
$args=array(
'meta_key' => 'be_stats',
'orderby' => 'meta_value_num',
'posts_per_page' => -1,
'post_type' => 'photo_galleries',
'order' => 'asc',
'paged' => $paged,
);
// this in functions.php
function be_stats_for_events( $update, $id ) {
return 'photo_galleries' == get_post_type( $id );
}
add_filter( 'be_stats_update', 'be_stats_for_events', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment