我有一个带有一组自定义字段的 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(); ?>