1: 您可以使用Page template
和自定义WP_Query
将特定类别的帖子显示到页面中。
2: 你也可以用shortcode
您必须在其中创建shortcode
包含特定类别的帖子,并将该快捷码粘贴到页面中。
Update
为自定义页面模板和wp\\U查询添加了示例代码
<?php
/**
*
* Template Name: Custom post page
*
**/
get_header(); ?>
<div class="main-content" id="main">
<?php
$args = array(
\'post_type\' => \'post\',
\'posts_per_page\' => 10,
\'category_name\' => \'your-category-slug\', // replace it with your category slug
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) : ?>
<table class="table post-table">
<thead>
<tr>
<td><strong>Title</strong></td>
<td><strong>Author</strong></td>
<td><strong>Post Date</strong></td>
</tr>
</thead>
<?php while( $query->have_posts() ) : $query->the_post();
?>
<tbody>
<tr>
<td><?php the_title(); ?></td>
<td><?php the_author(); ?></td>
<td><?php the_date( \'F j Y\'); ?></td>
</tr>
</tbody>
<?php endwhile; ?>
</table>
<?php endif; wp_reset_postdata(); ?>
</div>
<?php get_footer(); ?>
在主题文件夹中创建一个新的php文件,并将上述代码放入其中。然后他们从WP dashboard创建一个新页面,并在右侧边栏上选择您的自定义贴子页面模板。