我有以下代码块,希望将帖子数量限制为2篇,但似乎不起作用。。??我也尝试过在每页上使用posts\\u,但似乎也不起作用。
有谁能帮我指出哪里出了问题吗?
<?php
$tax_country = strip_tags( get_the_term_list($post->ID, \'country\') );
echo \'<h1>More Properties in \';
echo $tax_country;
echo \'...</h1>\';
$relates = get_posts(array(
\'post_type\' => \'propertyawardwinners\',
\'numberposts\' => -1,
\'tax_query\' => array(
array(
\'taxonomy\' => \'country\',
\'field\' => \'slug\',
\'terms\' => array($tax_country),
\'include_children\' => false
)
)
));
foreach ($relates as $relate) {
echo $relate->post_title . \'<br/>\';
echo $relate->ID . \'<br/>\';
echo get_field(\'location_city\') . \'<br/><br/>\';
}
?>