我使用此代码在我的页面中显示相同类别的其他帖子:
<?php
global $post;
$categories = get_the_category();
$ceker=false;
foreach ($categories as $category) {
if ($ceker == false){
$ceker=true;
?>
<h3 class="naslovostalih">Ostali članci iz ove kategorije:</h3>
<ul class="clanciostalih">
<?php
$args = array(
'numberposts' => 10,
'offset'=> 1,
'category' => $category->term_id,
'exclude' => $post->ID
);
}
$posts = get_posts($args);
foreach($posts as $pz) { ?>
<li>
<?php
$title = $pz->post_title;
$link = get_permalink($pz->ID);
printf('<a class="linkpost" title="%s" href="%s">%s</a>', $title, $link, $title);
the_post_thumbnail('thumb-232');
echo '<div id="excerptcu">';
echo excerpt(25);
echo '</div>';
?>
<p class="more-link-wrapper2"><a href="<?php $link; ?>" class="read-more button"><?php _e( 'Opširnije »', 'fearless' ); ?></a></p>
</li>
<?php } // end foreach ?>
</ul>
如何排除客户端正在查询的当前帖子,因此它不会显示在“此类别的其他帖子”列表中?
非常感谢!
答案 0 :(得分:1)
exclude
”
$args = array(
'numberposts' => 10, 'offset'=> 1,
'category' => $category->term_id,
'exclude' => $post->ID
);
$posts = get_posts($args);
在foreach()
循环中使用其他变量,因为它与全局$post
不明确
修改强>
<?php
global $post;
$categories = get_the_category();
$ceker=false;
foreach ($categories as $category) {
if ($ceker == false){
$ceker=true;
?>
<h3 class="naslovostalih">Ostali članci iz ove kategorije:</h3>
<ul class="clanciostalih">
<?php
$args = array(
'numberposts' => 10,
'offset'=> 1,
'category' => $category->term_id,
'exclude' => $post->ID
);
$posts = get_posts($args);
foreach($posts as $pz) { ?>
<li>
<?php
$title = $pz->post_title;
$link = get_permalink($pz->ID);
printf('<a class="linkpost" title="%s" href="%s">%s</a>', $title, $link, $title);
echo get_the_post_thumbnail($pz->ID, 'thumbnail');
echo '<div id="excerptcu">';
echo substr($pz->post_content, 0, 25);
echo '</div>';
?>
<p class="more-link-wrapper2"><a href="<?php $link; ?>" class="read-more button"><?php _e( 'Opširnije »', 'fearless' ); ?></a></p>
</li>
<?php } // end foreach ?>
</ul>
<?php } // end if
} //end foreach
&GT;
答案 1 :(得分:0)
您可以使用continue
跳过当前类别的循环。比较循环中所选类别的ID并跳过循环。