0

我有一个带有一组自定义字段的 wordpress 主题。其中之一被命名为“作者”。

在 single.php 上,我有一个 div,它显示具有相同自定义字段值的其他帖子。

仅当存在具有相同自定义字段值的其他帖子时,我才想显示此 div,否则我不想显示任何内容。

谢谢你的帮助!!

这是我的实际代码:

<?php 

                        $myquery = array(
                        'meta_key' => 'autore',
                        'meta_value' => $autore,
                        'showposts' => 2,
                        'post__not_in' => array($post->ID)
                        );

                        if ( $myquery->have_posts() ) : ?>

                        <div class="related">

                        <h3>Altre di <?php the_field('autore'); ?></h3>

                        <ul>

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

                                <?php        
                                echo '<li>'; ?>

                                <?php
                                $fotorel = get_field('foto_homepage');
                                list($width, $height) = getimagesize("$fotorel");
                                $relheight = $height / 2;
                                ?>

                                <div class="related-foto" style="background:url(<?php the_field('foto_homepage'); ?>) no-repeat center center; height:<?php echo $relheight.'px' ?>"></div>
                                <a href="<?php the_permalink() ?>"><?php the_title(); ?></a>


                               <?php echo '</li>';?>

                               <?php endwhile; ?>

                              <?php else : // What to do if there are no posts from that author

                              endif;?>

                                        </ul>

        </div>



                        <?php wp_reset_query(); ?>
4

2 回答 2

0

这里有一个例子:

http://codex.wordpress.org/Displaying_Posts_Using_a_Custom_Select_Query

使用条件<?php if ($pageposts): ?>,您可以打印或不打印您的 div。

于 2012-06-07T16:34:30.763 回答
0

我不确定您如何查询自定义字段中的帖子,但 $wp_query 内置了用于处理不返回帖子的查询的条件。

更新的代码示例:

$args = array(
         'meta_key' => 'autore',
         'meta_value' => $autore,
         'showposts' => 2,
         'post__not_in' => array($post->ID)
        );
 $your_query = new WP_Query( $args );


if ( $your_query->have_posts() ) : ?>

  <div id="your-div">

while ( $your_query->have_posts() ) : $your_query->the_post();

// Do stuff 

endwhile;

  else : // What to do if there are no posts from that author

endif;
于 2012-06-07T18:06:24.657 回答