我正在使用wordpress创建自己的网站。在首页我想要显示两篇最新的博客文章和两篇最新的新闻文章。 要显示的文本示例如下:
<div class="blog_bloc">
<span class="Title_post">Title</span>
<p class="text_post">blog post text text text text text</p>
<button id="read" >
Read more
</button><br><br>
<span class="Title_post">Title</span>
<p class="text_post">blog post text text text text text</p>
<button id="read" >
Read more
</button>
</div>
我在wordpress中找到了一些用于创建博客页面和新闻页面的插件。现在我想显示博客页面或新闻页面中的最新帖子或文章,将其自动放在首页。是否有任何插件可以添加我的模板废弃了最新文章并自动将它们放入首页?
答案 0 :(得分:0)
通常会在主页或任何地方显示五个帖子。
// Define our WP Query Parameters
<?php $the_query = new WP_Query( 'posts_per_page=5' ); ?>
// Start our WP Query
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
// Display the Post Title with Hyperlink
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
// Display the Post Excerpt
<?php the_excerpt(__('(more…)')); ?>
// Repeat the process and reset once it hits the limit
<?php
endwhile;
wp_reset_postdata();
?>
使用您自己的CSS。