首先感谢@jdm2112的快速响应。我可以通过在Wordpress管理面板中创建一个页面来获得永久链接,从而为自定义页面提供服务wordpress.live/blogs
. 之后,我设置page.php
通过所有posts
使用以下代码
<?php get_header();?>
<?php $wpdb = new WP_Query(array(
\'post_type\'=>\'post\',
\'post_status\' => \'published\',
\'posts_per_page\' => -1));
if($wpdb->have_posts()):
while($wpdb->have_posts()):
$wpdb->the_post();?>
<?php
// This calls the blogs.php that has the custom layout for blog listing.
get_template_part(\'blogs\');
// echo the_title();
endwhile;
endif;
?>
<?php get_footer();?>
只需呼叫
the_title()
来自博客。php打印出所有帖子的标题。博客。php
the_title();