2017-03-19 12 views
0

私はPHPとWordpressに本当に新しいです。私の投稿は表示されず、私はそれを修正する方法を知らない。Wordpressは投稿を表示しません

<!DOCTYPE html> 
<html lang="en"> 
    <head> 
    </head> 

    <?php get_header(); ?> 

    <div class="row"> 

     <div class="col-sm-8 blog-main"> 

      <?php get_template_part('content', get_post_format()); ?> 
      <?php 
if (have_posts()) : 
    while (have_posts()) : the_post(); 
     // Your loop code 
    endwhile; 
else : 
    echo wpautop('Sorry, no posts were found'); 
endif; 
?> 

     </div> <!-- /.blog-main --> 

     <?php get_sidebar(); ?> 

    </div> <!-- /.row --> 

<?php get_footer(); ?> 

これは私のindex.php

私のURLです:ループ内http://st358373.cmd16c.cmi.hanze.nl/epw/

答えて

0

移動get_template_part('content', get_post_format());

<?php if (have_posts()) : while (have_posts()) : the_post(); 
    // Your loop code 
    get_template_part('content', get_post_format()); 
endwhile; 
    else : 
    echo wpautop('Sorry, no posts were found'); 
endif; 
?> 
+1

はどうもありがとうございました! –

関連する問題