下面由WordPress教學欄位來介紹給大家WordPress# 無法使用the_content()方法輸出內容的解決辦法,希望對需要的朋友有幫助!
在使用WordPress裡在一個頁面裡我使用the_content()方法來輸出目前頁面的內容,但卻顯示為空,而標題,url等都沒有問題
在網路上好像遇到這種情況的人很少只找到了一個說是可能是function裡有函數覆蓋了the_content方法
但我將function方法刪除掉還是不行,然後我將程式碼全部刪除掉只留這句話"ae2c71cb3748333d02b5f92c6cb3929d"
結果還是不行,無奈只能用其他方式解決
解決方案:
使用$post物件裡的屬性「 5a9a6f4e0357efe1519ba782e2f10ea7post_content;?>」
下面是我的page.php裡的所有內容
<?php /** 内页/单页面 * @author htl * @date 2014-01-28 */ get_header(); ?> <?php get_sidebar()?> <div id="neirong"> <?php if ( have_posts() ) :?> <h1><?php the_title();?></h1> <div id="content"> <?php the_content()方法无法输出文章内容,通过$post对象里的post_content属性来输出 //the_content(); //print_r($post); echo $post->post_content;?> </div> <?php else : ?> <?php get_template_part( '404'); ?> <?php endif; ?> </div> <!-- neirong end --> <?php get_footer(); ?>
以上是解決WordPress無法使用the_content()方法輸出內容的詳細內容。更多資訊請關注PHP中文網其他相關文章!