我正在尝试在一个页面(6& 7)上显示两个类别的帖子。它应该包含来自 类别的帖子以及与之匹配的帖子。不幸的是,我到目前为止只找到后者的解决方案,这就是我现在向你求助的原因。这是我目前的代码:
<div class="sponsoren_container_wrapper">
<?php $args = array ( 'posts_per_page' => -1, 'category' => 6 );
$myposts = get_posts ( $args );
foreach ($myposts as $post) : setup_postdata( $post ); ?>
<div class="gallery_image_container">
<a href="<?php
$content = get_the_content();
print $content;
?>" title="<?php the_title_attribute(); ?>">
<div class="gallery_image_thumb">
<?php the_post_thumbnail('thumbnail'); ?>
</div>
<div class="gallery_title">
<h2>
<?php the_title(); ?>
</h2>
</div>
</a>
</div>
<?php endforeach; wp_reset_postdata(); ?>
</div>
如何将类别ID“7”添加到该代码中,以使一切工作如上所述? 提前谢谢!
答案 0 :(得分:2)
使用逗号分隔的字符串:
$args = array ( 'posts_per_page' => -1, 'category' => '6,7' );
答案 1 :(得分:1)
$args = array ( 'posts_per_page' => -1, 'category' => '6,7' );
$myposts = get_posts ( $args );
答案 2 :(得分:0)
$args = array ( 'posts_per_page' => -1, 'category' => '6,7' );
$myposts = get_posts ( $args );
对我来说,“类别”不会通过,但“猫”会这样做。我希望这有助于某人。