Skip to content

Instantly share code, notes, and snippets.

@ibrahimkholil
Created October 24, 2016 14:24
Show Gist options
  • Save ibrahimkholil/3d1411f3ab439de359d695e0449b161f to your computer and use it in GitHub Desktop.
Save ibrahimkholil/3d1411f3ab439de359d695e0449b161f to your computer and use it in GitHub Desktop.
WordPress: Enabling Page attributes for posts (sort_order)
/**********************************************************
function.php add below the code
*************************************
function posts_order()
{
add_post_type_support( 'post', 'page-attributes' );
}**/
add_action( 'admin_init', 'posts_order' );
/**********************************************************
psot query page add below the code
***************************************/
$order_posts = new WP_Query(array(
'post_type' => 'post',
'post_status' => 'publish',
'orderby' => 'menu_order',
'order' => 'ASC',
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment