如何使用帖子的“MENU_ORDER”字段?

时间:2013-03-21 作者:tooshel

我有一个特例,我想按自定义顺序订购帖子,最好使用通常只用于页面的“menu\\u order”字段。在WordPress管理UI中公开它的最佳方式是什么?

1 个回复
最合适的回答,由SO网友:brasofilo 整理而成

显然这很简单:

add_action( \'admin_init\', \'posts_order_wpse_91866\' );

function posts_order_wpse_91866() 
{
    add_post_type_support( \'post\', \'page-attributes\' );
}
然后执行查询:

$order_posts = new WP_Query(array(
    \'post_type\' => \'post\', 
    \'post_status\' => \'publish\', 
    \'orderby\' => \'menu_order\', 
    \'order\' => \'ASC\', 
) );

结束