在设置中->;如果您的首页未设置为显示,请阅读;“最新帖子”;无论选择什么作为帖子页面,都将使用索引。php模板。
我确实使用静态页面,但我认为它仍然使用索引。php在这个静态页面上填充项目?我通过在索引中修改一些自由文本进行了检查。phpand它反映在静态页面上的博客帖子中西蒙4小时
您的评论是正确的;“静态页面”;正在使用索引。php
要将静态页面与自定义模板一起用于日志,请按以下方式更改阅读设置:
更改此项:
对此:
对于自定义模板,只需复制并粘贴索引即可。php创建一个新文件并将其命名为custom page blog。php并将其添加到其中。
<?php
/*
Template Name: Blog
*/
get_header();
$args=array(
\'category__not_in\' => 98
);
$blog_query = new WP_Query( $args );
while ($blog_query->have_posts()) : $blog_query->the_post(); ?>
<!-- Begin .postBox -->
<div class="postItem">
<h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
<div class="meta">
<?php the_time(\'M j, Y\') ?> // by <span class="author"><?php the_author_link(); ?></span> // <?php the_category(\', \') ?> // <?php comments_popup_link(\'No Comments\', \'1 Comment \', \'% Comments\'); ?>
</div>
<?php the_content(__(\'Read more >>\')); ?>
</div>
<!-- End .postBox -->
<?php endwhile; ?>
<!--<div class="navigation">
<div class="alignleft"><?php next_posts_link() ?></div>
<div class="alignright"><?php previous_posts_link() ?></div>
</div>-->
<?php if (function_exists("emm_paginate")) {
emm_paginate();
} ?>
</div>
<!-- End #colLeft -->
<?php get_sidebar(); ?>
<?php }?>
<?php get_footer(); ?>
转到您的静态“;博客;页面,然后在页面属性中选择新模板。