2012-06-04 38 views

回答

7

只需更換:

<?php get_template_part('content', get_post_format()); ?> 

有了:

<?php the_content(); ?> 

前者是尋找類似內容status.php內容aside.php或最很可能,在一個普通的舊帖子的情況下,content.php在你身上r主題根。

8

您可以

<?php get_template_part('content', 'myformat'); ?> 

更換

<?php get_template_part('content', get_post_format()); ?> 

,並與名稱content-myformat.php在那裏你可以刪除the_title()行編輯content-page.php副本。