Wordpress - 尝试在循环中仅检索自定义 post 的直接子级

Wordpress - Trying to retrieve only immediate children of custom post in loop

我有一个名为 'location' 的自定义 post 类型,其中最高级别是州,第二级别是城市,第三级别是实际位置。

我已经使用了 here and here 推荐的方法,但没有成功。我试过 get_pages()get_posts()get_children(),它要么检索所有子项,要么检索所有页面。

这是我当前在自定义 post 类型的单个模板中的代码:

<?php $args = array(
                'child_of' => $post->ID, 
                'parent ' => $post->ID,
                'hierarchical' => 0,
                'sort_column' => 'menu_order', 
                'sort_order' => 'asc',
            ); 
$locations = get_pages($args); ?>
    <?php
        foreach ($locations as $location):
            $title  = get_the_title($location->ID);
            $locale = get_field('location',$location->ID);
            $lat    = $locale['lat'];
            $lng    = $locale['lng'];
            $addy   = $locale['address'];
            $hours  = get_field('hours',$location->ID);
            $link   = get_the_permalink($location->ID);
    ?>
                <div class="location-single" data-lat="<?php echo $lat; ?>" data-lng="<?php echo $lng; ?>">
                    <?php echo $title; ?>
                    <address><?php echo $addy; ?></address>
                    <time><?php echo $hours; ?></time>
                </div>
    <?php endforeach; ?>

编辑:为了涵盖我的所有基础,这是我用来注册此自定义 post 类型的代码。

function custom_post_type() {

$labels = array(
    'name'                  => _x( 'Locations', 'Post Type General Name', 'text_domain' ),
    'singular_name'         => _x( 'Location', 'Post Type Singular Name', 'text_domain' ),
    'menu_name'             => __( 'Locations', 'text_domain' ),
    'name_admin_bar'        => __( 'Location', 'text_domain' ),
    'archives'              => __( 'Locations Archives', 'text_domain' ),
    'attributes'            => __( 'Location Attributes', 'text_domain' ),
    'parent_item_colon'     => __( 'Parent Location:', 'text_domain' ),
    'all_items'             => __( 'All Location', 'text_domain' ),
    'add_new_item'          => __( 'Add New Location', 'text_domain' ),
    'add_new'               => __( 'Add New', 'text_domain' ),
    'new_item'              => __( 'New Location', 'text_domain' ),
    'edit_item'             => __( 'Edit Item', 'text_domain' ),
    'update_item'           => __( 'Update Item', 'text_domain' ),
    'view_item'             => __( 'View Item', 'text_domain' ),
    'view_items'            => __( 'View Items', 'text_domain' ),
    'search_items'          => __( 'Search Item', 'text_domain' ),
    'not_found'             => __( 'Not found', 'text_domain' ),
    'not_found_in_trash'    => __( 'Not found in Trash', 'text_domain' ),
    'featured_image'        => __( 'Featured Image', 'text_domain' ),
    'set_featured_image'    => __( 'Set featured image', 'text_domain' ),
    'remove_featured_image' => __( 'Remove featured image', 'text_domain' ),
    'use_featured_image'    => __( 'Use as featured image', 'text_domain' ),
    'insert_into_item'      => __( 'Insert into item', 'text_domain' ),
    'uploaded_to_this_item' => __( 'Uploaded to this item', 'text_domain' ),
    'items_list'            => __( 'Items list', 'text_domain' ),
    'items_list_navigation' => __( 'Items list navigation', 'text_domain' ),
    'filter_items_list'     => __( 'Filter items list', 'text_domain' ),
);
$args = array(
    'label'                 => __( 'Location', 'text_domain' ),
    'description'           => __( 'Locations', 'text_domain' ),
    'labels'                => $labels,
    'supports'              => array( 'title', 'editor','page-attributes' ),
    'hierarchical'          => true,
    'public'                => true,
    'show_ui'               => true,
    'show_in_menu'          => true,
    'menu_icon'             => 'dashicons-location',
    'menu_position'         => 8,
    'show_in_admin_bar'     => true,
    'show_in_nav_menus'     => true,
    'can_export'            => true,
    'has_archive'           => true,
    'exclude_from_search'   => false,
    'publicly_queryable'    => true,
    'capability_type'       => 'page',
);
register_post_type( 'location', $args );

}
add_action( 'init', 'custom_post_type', 0 );

我正在使用以下方法将其插入 the_content 区域:

add_filter('the_content', 'location_content');  

function location_content( $content ) {
    if ( is_singular( 'location' ) ) {
        include dirname( __FILE__ ) . '/templates/location.php'; 
    }
    else {
        return $content;
    }
}

这可能是问题所在吗?如果我有一个带有这段代码的模板,它会更好吗?

编辑:我已经尝试将这段代码和下面的解决方案直接包含在单个模板文件中,但它仍然returns什么都没有。

首先,确保将此代码放在 WordPress 主循环中,以便您可以访问 $post。如果不是,则需要使用 global $post;.

进行声明
if ($post->post_parent) {

    $children = wp_list_pages(array(
        'title_li' => '',
        'child_of' => $post->post_parent, // child of only the parent page
        'echo' => 0, // do not echo
        'exclude' => $post->ID, // exclude the parent page from being added to array
        'post_type' => 'location' // only posts from the location post type
    ));

}

if ($children) {

    echo '<ul>' . $children . '</ul>';

}

您应该能够将它添加到您的主题文件中,并显示您想要的任何其他信息。如果需要,您还可以在 $children 上执行 foreach() 循环,以防您需要添加其他内容。我在一个主题上有这个确切的代码 运行,它正在按预期工作。这不会获取页面内容,仅获取带有链接的页面标题。如果我没看错的话,这就是你要找的。

好吧,这有点麻烦,但它确实有效...

<?php 
$post_id = $post->ID;
$level = count(get_post_ancestors( $post_id )) + 1;
switch($level) {
    case 1: ?>

<?php $args = array(  'child_of' => $post_id, 'parent ' => $post_id,'hierarchical' => 0, 'sort_column' => 'menu_order', 'sort_order' => 'asc', 'post_type' => 'location',);
$mypages = get_pages( $args );
foreach( $mypages as $post ): ?>


    <?php 
    $post_id = $post->ID;
    $level = count(get_post_ancestors( $post_id )) + 1;
    switch($level) {
        case 1: ?>


        <?php break;   
        case 2: ?>


<?php $location = get_field('location', $post->ID); ?>
<div class="location-single" data-lat="<?php echo $location['lat']; ?>" data-lng="<?php echo $location['lng']; ?>">
<h4><a href="<?php the_permalink($post->ID); ?>"><?php echo get_the_title($post->ID); ?></a></h4>
<address><?php echo $location['address']; ?></address>
<time><?php the_field('hours',$post->ID); ?></time>
</div>


        <?php break;   
    }; ?>



<?php endforeach; ?>

<?php break;   
case 2: ?>

<?php $args = array(  'child_of' => $post_id, 'parent ' => $post_id,'hierarchical' => 0, 'sort_column' => 'menu_order', 'sort_order' => 'asc', 'post_type' => 'location',);
$mypages = get_pages( $args );
foreach( $mypages as $post ): ?>


    <?php 
    $post_id = $post->ID;
    $level = count(get_post_ancestors( $post_id )) + 1;
    switch($level) {
        case 1: ?>


        <?php break;   
        case 2: ?>

        <?php break;   
        case 3: ?>
    <?php $location = get_field('location', $post->ID); ?>
    <div class="location-single" data-lat="<?php echo $location['lat']; ?>" data-lng="<?php echo $location['lng']; ?>">
<h4><a href="<?php the_permalink($post->ID); ?>"><?php echo get_the_title($post->ID); ?></a></h4>
<address><?php echo $location['address']; ?></address>
<time><?php the_field('hours',$post->ID); ?></time>
</div>


        <?php break;   
    }; ?>



<?php endforeach; ?>



<?php break;   
case 3: ?>

<?php $location = get_field('location', $post_id); ?>
<div class="location-single" data-lat="<?php echo $location['lat']; ?>" data-lng="<?php echo $location['lng']; ?>">
<h4><?php the_title(); ?></h4>
<address><?php echo $location['address']; ?></address>
<time><?php the_field('hours'); ?></time>
</div>


<?php break;   
}; ?>

我基本上是循环遍历,根据层次结构的级别不打印任何内容。

编辑:没关系,它不会将 post ID 传递到嵌套循环中。

pet_pages更改为get_posts,然后修改您传入的参数。

<?php
  $args = array(
    'post_type' => 'location',
    'parent ' => $post->ID,
    'sort_column' => 'menu_order', 
    'sort_order' => 'asc',
    // etc...
  ); 
  $locations = get_posts($args);
?>

此处重要的是将 post_type 设置为您的自定义 post 类型。如果您将 parent 配置设置为当前 $post->ID,则无需同时设置 child_of.

找到我的用例的答案:

我使用的是新的 WP_Query,而不是 get_pages 或 get_posts。那解决了我所有的问题。谢谢大家的帮助。