我试图在自定义页面中显示最近帖子的标题和说明。我发现了一些小部件,例如Recent Posts,但这个小部件显示在特定的地方,如页脚。但是,我没有找到这个小部件的工作原理以及我在哪里找到这个小部件的源代码?我怎么能找到它?
答案 0 :(得分:2)
<ul>
// 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
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
// Display the Post Excerpt
<li><?php the_excerpt(__('(more…)')); ?></li>
// Repeat the process and reset once it hits the limit
<?php
endwhile;
wp_reset_postdata();
?>
</ul>
使用此代码。
答案 1 :(得分:1)
尝试insert Php,它允许将php代码添加到wordpress中的html页面。