Last active
December 20, 2015 03:08
-
-
Save chillybin/6060875 to your computer and use it in GitHub Desktop.
Template Name: Galleries - Most Viewed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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