Skip to content

Instantly share code, notes, and snippets.

@jpen365
Created September 21, 2016 14:32
Show Gist options
  • Save jpen365/03d8a66145bc313c22d4b8de2fc799ca to your computer and use it in GitHub Desktop.
Save jpen365/03d8a66145bc313c22d4b8de2fc799ca to your computer and use it in GitHub Desktop.
<?php
/* Sort posts on the blog posts page according to the custom sort order */
function jpen_custom_post_order_sort( $query ){
if ( $query->is_main_query() && is_home() ){
$query->set( 'orderby', 'meta_value' );
$query->set( 'meta_key', '_custom_post_order' );
$query->set( 'order' , 'ASC' );
}
}
add_action( 'pre_get_posts' , 'jpen_custom_post_order_sort' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment