简体   繁体   中英

WordPress query by ACF relationship field

I have a custom post type "building" and another custom post type "architect". Building are related to architects via an ACF relationship field.

In the single-architect page I want to display a list of the buildings that are associated to that particular architect.

So far I have achieved this by doing the following:

$loop = new WP_Query( array( 'post_type' => 'building', 'paged' => $paged, 'posts_per_page' => -1 ) );
if ( $loop->have_posts() ) : ?>

    <ul>

        <?php while ( $loop->have_posts() ) : $loop->the_post();

            $building_name = get_the_title(); 
            $building_link = get_the_permalink();

            $architects = get_field('architect'); 
            if( $architects ): ?>
                <?php foreach( $architects as $post):?>
                    <?php setup_postdata($post);
                    if( get_the_title() == $architect_name ) { ?>
                        <li><a href="<?php echo $building_link; ?>"><?php echo $building_name ?></a></li>
                    <?php } ?>
                <?php endforeach; ?>

                <?php wp_reset_postdata(); ?>
            <?php endif; ?>

        <?php endwhile; ?>

    </ul>

<?php endif;
wp_reset_postdata();

However this doese not seem very efficient and I am looking to introduce the relationship into the query itself, which I have tried by doing this:

$buildings = get_posts(array(
    'post_type' => 'building',
    'meta_query' => array(
        array(
            'key' => 'architect',
            'value' => '"' . get_the_ID() . '"',
            'compare' => 'LIKE'
        )
    )
));

<?php if( $buildings ): ?>
    <ul>
        <?php foreach( $buildings as $building): ?>

            <li><a href="<?php echo get_permalink( $building->ID ); ?>"><?php echo get_the_title( $building->ID ); ?></a></li>

        <?php endforeach; ?>
    </ul>
<?php endif; ?>

Which is not working, it does not return anything...

Can you see what am I doing wrong or do you have any other idea to approach this situation?

Something like this should do it on the single architect page (because you're already in a loop to only display that architect and you need to get the buildings)...based on the ACF documentation.

<?php 

$posts = get_field('building');

if( $posts ): ?>
    <ul>
    <?php foreach( $posts as $p ): // variable must NOT be called $post (IMPORTANT) ?>
        <li>
            <a href="<?php echo get_permalink( $p->ID ); ?>"><?php echo get_the_title( $p->ID ); ?></a>
            <span>Custom field from $post: <?php the_field('author', $p->ID); ?></span>
        </li>
    <?php endforeach; ?>
    </ul>
<?php endif; ?>

If you are basing it on a query, it would be more like

<?php 
$ids = get_field('building', false, false);

$query = new WP_Query(array(
    'post_type'         => 'architect',
    'posts_per_page'    => -1,
    'post__in'          => $ids,
    'post_status'       => 'any',
    'orderby'           => 'post__in',
));

?>

A lot of this is actually hinged on the way you're setting up the relationship. Are you having the custom field displayed on the architect page and selecting buildings there?

I solved it by changing the value in the meta_query.

From this :

'"' . get_the_ID() . '"'

to :

get_the_ID()

This is the solution that I'm currently using. I looks quite solid to me.

$buildings = new WP_Query(array(
    'post_type'        => 'building',
    'posts_per_page'   => -1,
    'suppress_filters' => 0,
    'meta_query'       => array(
            array(
                'key'      => 'architect',
                'value'    => '"'.$architect_id.'"',
                'compare'  => 'LIKE'
            )
        ),
        'order' => 'ASC',
        'orderby' => 'title',
        'post_status' => 'publish',
    )); 

while ( $buildings->have_posts() ) {
    $buildings->the_post();

    // print title, content, or whatever here.

}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM