我的WordPress的網站沒有使用single.php來顯示網站上的帖子。每次我打開一篇文章,它都會在index.php中打開它。WordPress的使用index.php而不是single.php來顯示帖子
我的single.php看起來像這樣
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<? echo the_content(); ?>
<? endwhile;
endif; ?>
<? get_footer();
?>
我該如何解決這個問題?
http://codex.wordpress.org/Creating_a_Static_Front_Page – Vimalnath
什麼是您當前的設置'前臺頁面顯示'在您的設置? – halfer
前臺顯示最近的帖子 –