php 显示页面模板中的所有帖子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 显示页面模板中的所有帖子相关的知识,希望对你有一定的参考价值。

<?php
/**
 * Template Name: All Posts
 *
 * This template lists all posts via WP_Query and get_posts();
 */
get_header();

      // WP_Query arguments
	$args = array (
		'posts_per_page'         => '-1',
		'ignore_sticky_posts'    => true,
		'order'                  => 'DESC',
		'orderby'                => 'date',
		'cache_results'          => true
	);

	// Hook into WP_Query and pass default arguments
	getposts = get_posts( $args );

	// Loop through each post
	foreach( $getposts as $post ) : ?>

	        <h1><?php the_title(); ?></h1>
	        <?php the_excerpt(); ?>

	<?php endforeach;

get_sidebar();
get_footer();

以上是关于php 显示页面模板中的所有帖子的主要内容,如果未能解决你的问题,请参考以下文章

php 显示每个分类术语存档页面中的所有帖子

使用存档页面中的 ACF 字段进行自定义帖子

如何在页面模板中将ACF关系帖子显示为循环

控制 wordpress 存档页面上的帖子数量

WordPress页面模板列出所有帖子

taxonomy.php中的WP Query会杀死标准循环