2013-10-31 2 views
0

the_content() 함수가 작동하지 않습니다. 아래에 첨부 된 내 코드를 확인하십시오. 이 코드는 페이지 템플리트에 작성됩니다.wordpress의 the_content() 함수가 작동하지 않습니다.

<div class="row marT20" > 
    <div class="content"> 
     <?php 
      while (have_posts()) 
      { 
       the_post(); 
     ?> 
     <h2><?php the_title(); ?></h2> 
     <p class="marT20"><?php the_content(); ?></p> 
     <?php 
      } 
     ?> 
    </div> 

이것은 내용을 표시하지 않고 있지만 제목이 인쇄 중입니다.

편집 : -이 질문을 스스로 해결

... 즉, functions.php를 서면으로 내 잘못이었다.

+0

내가 잘못 아무것도 표시되지 않습니다 사용할 수 있습니다. –

+0

marT20 클래스에는 어떤 CSS가 있습니까? 아무도 표시하지 않을 수도 있습니다. – danyo

답변

1

사용 조건 경우

귀하의 추가 정보를 위해
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> // if post exists 

<?php the_title(); ?> // title 

<?php the_content(__('(more...)')); ?> //content with more option 

<?php endwhile; else: ?> //else 
**strong text** 
<?php echo "Sorry, no posts matched your criteria."; ?></p><?php endif; ?> // print this 
0

이 코드하십시오 : 이 외에도 the_content();에서 당신은 또한 echo get_the_content();