我正在尝试为此找到解决方案。
我想在循环中使用 php 更改帖子的类别。
所以我得到了帖子的猫 ID 并为相应的 ID 创建了一个 if 函数,其中的类应该相应地更改。
但不知何故,他只得到一次 id 并且为每篇文章打印相同的。
有人知道为什么吗?
<?php query_posts('cat=23,29,30,31'.'&showposts=50'.'&orderby=rand'); if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php $cat = get_cat_ID( single_cat_title("",false) );
print_r($cat);
if ( $cat= "23" ) {
$size="poststart";
}
else if ( $cat= "29" ) {
$size="postcp2";
}
else if ( in_array("30", $category_id) ) {
$size="postcp3";
}
else if ( in_array("31", $category_id) ) {
$size="postfast";
}
unset ($cat);
print_r($cat);
?>
<div class="<?php echo $size ?>" id="post-<?php the_ID(); ?>">