web-dev-qa-db-ja.com

Menu_orderカスタム投稿タイプのクエリ

私は私のカスタム投稿タイプに'supports' => 'page-attributes'を追加しました、そして今私はページ順序付けのためのメタボックスを持っています。

カスタム投稿タイプでget_pages()と引数'sort_column' => 'menu_order'を使用すると、すべてが正しく注文されます。

それで、なぜ私はquery_posts(array('orderby' => 'menu_order'))を使用してポストを質問するときにカスタムページが適切に注文しないのですか?

そして、私はそれらをメニュー順で並べるために何ができるでしょうか?

これは、誰かが見たいと思う場合に使っているクエリimです。

<?php 
    $current_term = ($wp_query->query_vars['section'] <> '') ? $wp_query->query_vars['section'] : $menu_arr[0]; 
    query_posts(array(  'post_type' => 'module', 
        'orderby' => 'menu_order',
        'tax_query' => array(array( 'taxonomy' => 'section', 
                                    'field' => 'slug', 
                                    'terms' => $current_term )),
        'post_parent' => 0 ));
?>
5
cnotethegr8

私はちょうどあなたと同じことをしなければならなかった、これは私がこれを動かすためにしたことである:

'supports' => array('title', 'editor', 'thumbnail', 'page-attributes')

ページ属性をサポートして投稿タイプを登録します。これにより、メニュー順序メタボックスが編集画面に追加されます。そこからあなたは注文を出すことができます。

それから私のカスタムクエリを実行します。

$args = array(
    'numberposts' => -1,
    'orderby' => 'menu_order',
    'order' => 'ASC',
    'post_type' => 'staff'
);
$staff = get_posts($args);

orderbyをmenu_orderに、orderをASCに設定します。メニューの順序で値を設定しない場合は、0に設定します。したがって、順序が設定されていない投稿は最初に表示されます。

11
Brady

私のfunctions.php私はこれを使用しました:

add_action( 'init', 'create_Videos' );
function create_Videos() {
    register_post_type('videos', array(
        'label' => __('Videos'),
        'singular_label' => __('Video'),
        'public' => true,
        'show_ui' => true,
        'capability_type' => 'article',
        'hierarchical' => true,
        'rewrite' => false,
        'query_var' => true,
        'supports' => array('title', 'editor', 'page-attributes')
    ));
}

そして私のテーマでは:

    $args = array(
        'numberposts' => -1,
        'orderby' => 'menu_order',
        'order' => 'ASC',
        'post_type' => 'videos'
    );
    $loop = new WP_Query( $args );
    while ( $loop->have_posts() ) : $loop->the_post();

これは私のために働いたものです

2
Jan

sort_column=menu_orderは、あなたがview > menus(翻訳済み)で設定した順序ではなく、それらの順序に基づいてページをソートするだけです。

$children = get_pages('child_of='. $topID); 

// 'sort_column=menu_order' <-- only sorts by post order in writing mode (page > edit) not the menu order set in view > menus
// wp_nav_menu has what we need, let's sort it the same way.
$options = array(
    'container' =>  '',
    'echo'      =>  false,
);                      
$nav = wp_nav_menu($options);       
$nav = strip_tags($nav);        
$nav = str_replace("\r", '', $nav);
$nav = explode("\n", $nav);
//print_r($nav);
$newChildren = array();
foreach ($nav as $item) {
    $item = trim($item);
    $run = true;
    for ($c = 0; $c < count($children) && run; $c++) {              
        $child = $children[$c];
        if (strcmp($child->post_title, $item) == 0 && !in_array($child, $newChildren)) {
            $newChildren[] = $child;                    
            $run = false;
        }
    }

    // Adding the children the nav_menu is lacking, not sure why not all sub-children 
    //  are added to the first child here..(works but don't know why :/)
    if ($run == true) {
        for ($c = 0; $c < count($children) && run; $c++) {              
            $child = $children[$c];     
            if (!in_array($child, $newChildren)) {
                $newChildren[] = $child;
            }
        }           
    }
}
$children = $newChildren;
0
OZZIE