我试图复制这张显示最新帖子的图片中看到的相同风格。我知道如何使用WP循环重新创建它,并使内容大小保持不变。我想做的是让它根据固定模板改变大小。因此,布局将保持不变,但帖子将根据最新帖子进行更改。如果我能为如何实现这一目标指明正确的方向。
正如我所说,我知道如何使用循环使用单一布局样式重新创建帖子。理想情况下,我不想使用特色帖子。
我使用的循环是:
<?php if ( have_posts() ) : ?>
<?php /* Limit Number of posts returned to 4 !important */ ?>
<? $numberOfPost = 4;
$catId = get_query_var(\'cat\');
$page = (get_query_var(\'paged\')) ? get_query_var(\'paged\') : 1;
query_posts(\'paged=\'.$page.\'&posts_per_page=\'.$numberOfPost.\'&cat=\'.$catId); ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
/* Include the Post-Format-specific template for the content.
* If you want to overload this in a child theme then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( \'/templates/content-latest\', get_post_format() );
?>
<?php endwhile; ?>
<?php endif; ?>