我正在使用同位素,目前我的主页上的每个帖子都呈现为一个框。我目前正在尝试编辑我的(工作)查询,该查询当前显示所有类别slug为“static”的帖子。在这个查询中,我想针对4个特定的帖子ID,并定制这4个帖子中每个帖子的外观。因此,这4篇帖子中的每一篇都会有不同的内容。如何调整此工作循环,以便添加/删除4个不同帖子ID的内容?
还要注意的是,在我的模板文件中,我在这个查询下面有另一个查询,它显示来自其他6个类别的帖子。代码是相同的,但我刚刚更改了链接位置。我希望一切都有意义!
<?php
// Query just the category static and make the link manually editable through the \'URL\' custom field
$paged = (get_query_var(\'paged\')) ? get_query_var(\'paged\') : 1;
$args= array(
\'category_name\' => \'static\',
\'paged\' => $paged
);
query_posts($args);
if( have_posts() ) :?>
<?php while (have_posts()) : the_post(); ?>
<?php foreach( get_the_category() as $cat ) echo \'<div class="module \' . $cat->slug . \'" data-category="\' . $cat->slug . \'" >\'; ?>
<a href="<?php echo get_post_meta($post->ID, \'URL\', true); ?>" title="<?php the_title(); ?>">
<div class="active">
<div class="hover"></div>
<?php the_post_thumbnail(); ?>
</div>
<h1><?php the_title(); ?> <span>/ Explode here</span></h1>
<?php
// Call in the contents of a custom field called Excerpt and if custom field in admin panel is empty don\'t display <p> tags otherwise wrap contents in <p> tags
$excerpt=get_post_meta($post->ID,\'Excerpt\',true);
if($excerpt != \'\') {
echo \'<p>\'. $excerpt .\'</p>\';
} else {
echo \' \';
}
?>
<p class="date"><!-- for sorting boxes, use post id or date format must be yyyyMMdd--><?php the_time(\'Ydm\') ?></p>
</a>
</div>
<?php endwhile; ?>
<?php endif; ?>