尝试以下操作以获取帖子数:
<?php
$connected = new WP_Query( array(
\'connected_type\' => \'posts_to_pages\',
\'connected_items\' => get_queried_object(),
\'nopaging\' => true,
) );
echo "<h2>Found: $connected->found_posts</h2>";
?>
您可以编写如下变量:
$the_count = $connected->found_posts;
然后使用
if
if ( ( $connected->have_posts() ) && ( $the_count > 1 ) ) :