2016-12-07 7 views
0

私のページには、ヘッダーとフッター以外のコンテンツが表示されていません。私がレイアウトしている方法とは思っていますが、 。あなたはwhile文を忘れてしまったWordPressのカスタムテーマ、なぜ私のコンテンツがページに表示されないのですか

のindex.phpとpage.php

<?php get_header(); ?> 
<?php if(have_posts()) : the_post(); ?> 
    <?php the_content(); ?> 
<?php endif; ?> 
<?php get_footer(); ?> 
+1

' '? – smoqadam

+0

あなたのテーマをこの記事[ここ](https://github.com/taniarascia/startwordpress)と比較するか、ここにコードを投稿してください – Blueblazer172

+0

@smoqadam [the_content](https://developer.wordpress.org/reference /関数/ the_content /)はエコーを必要としません。 'get_the_content'はエコーを必要とします。 – janw

答えて

2

はここにあなたのコードが見えるはずです方法は次のとおりです。?

<?php get_header(); ?> 
<?php if(have_posts()) : while (have_posts()) : the_post(); ?> 
    <?php the_content(); ?> 
<?php endwhile; endif; ?> 
<?php get_footer(); ?> 
関連する問題