我用自己的自定义查询创建了一个自定义模板。用例:仅用于粘贴帖子的页面。
已添加sticky.php
主题与
/**
* Template Name: Sticky
*/
以及以下循环:
$query = new WP_Query(array(\'post__in\' => get_option( \'sticky_posts\' ), \'posts_per_page\'=>10, \'ignore_sticky_posts\'=>1, \'paged\' => ( get_query_var(\'paged\') ? get_query_var(\'paged\') : 1 ) ));
if($query->have_posts()) : while($query->have_posts()) : $query->the_post();
get_template_part(\'excerpt\');
endwhile; endif;
接下来,我添加了一个名为Sticky with的空页面
sticky.php
作为模板。
现在,我来举个例子。com/sticky,选择工作正常,包括分页。然而example.com/sticky/feed
没有显示正确的提要,而是有一个空的评论提要,就像是一篇帖子。
那么,我应该怎么做才能让它像所有其他归档页面一样输出帖子提要呢?