Last active
January 30, 2019 18:59
-
-
Save adamcapriola/fdb658cf83e96bf6a6803e7ef2c2f78d to your computer and use it in GitHub Desktop.
Example query for popular posts (i.e., posts with most views)
This file contains 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
<?php | |
/** | |
* Example query: Posts ordered by most views | |
* | |
*/ | |
$args = ( | |
'meta_key' => 'views', | |
'orderby' => 'meta_value_num', | |
'order' => 'DESC', | |
); | |
$posts = get_posts( $args ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment