是否可以将起始页也用作存档页?
startpage中有许多用于其他不同类别和分类的框。例如:
<div class="column box medium-box module">
<header class="module-head"><h2>Art</h2></header>
<ul class="posts-list">
<?php
$args = array(
\'posts_per_page\' => 6,
\'post__not_in\' => $do_not_duplicate,
\'category_name\' => \'art\'
);
$myposts = get_posts($args);
foreach ($myposts as $post) : setup_postdata($post);
$do_not_duplicate[] = $post->ID;
?>
<li>
<?php get_template_part(\'template-parts/post/content\', \'small\'); ?>
</li>
<?php endforeach;
wp_reset_postdata();?>
</ul>
</div>
现在,当页面用作归档页面时,我希望将分类添加到参数中。