現在Wordpressのテンプレートを開発中です。静的インデックス ページがあります。私のブログ投稿では、という名前のカスタム テンプレートを使用していますBlog
。しかし、このBlog
テンプレートでページを作成し、そのページを表示しようとすると; ブログページは表示されませんが、表示されます404.php
私はこれらのファイルを使用しています:
index.php //static index page
blog.php //blog page under Blog template
404.php
これは私のサイトですhttp://ratcat.bugs3.com/samata/ そして、これは動作していないブログページですhttp://ratcat.bugs3.com/samata/blog-6
さらにヘルプが必要な場合は、ここに私の blog.php メイン コード セグメントを示します。
<div class="single_post">
<?php
// The Query
$page = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts("paged=$page");
// The Loop
if(have_posts()) :
while ( have_posts() ) : the_post();
?>
<table>
<tr>
<td class="left_date">
<h1><?php the_time('d') ?></h1>
<p><?php the_time('M') ?></p>
<span class="year"><p><?php the_time('Y') ?></p></span>
</td>
<td>
<a href="<?php the_permalink(); ?>" ><h2><?php the_title(); ?></h2></a>
<div class="author_tag">
<span class="author">By: <?php the_author_posts_link(); ?></span>
<span class="tag"><?php the_tags(); ?></span>
</div>
<div class="post">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('post-image', array('class' => 'post-thumb')); ?></a>
<p><?php the_excerpt(); ?></p>
<div class="read_comment">
<a href="<?php the_permalink(); ?>" title="Full post"><span class="read">Read more</span></a>
<span class="comment"><?php comments_popup_link('No Comment', '1 Comment', '% Comments'); ?></span>
</div>
</div>
</td>
</tr>
</table>
<div class="clear"></div>
<div class="gap"></div>
<?php
endwhile; ?>
<table class="nav_post">
<tr>
<td><div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">«</span> Previous posts') ); ?></div></td>
<td><div class="nav-next"><?php previous_posts_link( __( 'Next posts <span class="meta-nav">»</span>') ); ?></div></td>
</tr>
</table>
<?php
endif;
// Reset Query
wp_reset_query();
?>
</div>