• Anonymous User 10322432

    (@anonymized-10322432)


    My site is still not sticking to the ordering of the pages in the Dashboard>Tree View.

    Where am I confirming/inserting the required code (shown below)?
    (I am new to WP and editing the files, so forgive me…)
    TY!Bets plug-in, btw. <3

    // Example using query_posts
    $args = array(
    ‘orderby’=> ‘menu_order’,
    ‘order’=>’ASC’,
    ‘post_type’ => ‘page’,
    );
    $posts = query_posts($args);

    // Example using wp_query
    $query = new WP_Query( array( ‘post_type’ => ‘page’, ‘orderby’ => ‘title menu_order’, ‘order’ => ‘ASC’ ) );

    http://ww.wp.xz.cn/extend/plugins/cms-tree-page-view/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)

The topic ‘Order Pages’ is closed to new replies.