Proper way to get page content

后端 未结 8 1884
不思量自难忘°
不思量自难忘° 2020-12-22 19:47

I have to get specific page content (like page(12))

I used that :

  post_content;  ?>
         


        
8条回答
  •  半阙折子戏
    2020-12-22 20:25

    Just only copy and paste this code it will get your page content.

    post_content;
                    $content = apply_filters('the_content', $content);
                    $content = str_replace(']]>', ']]>', $content);
                    echo $content;
                    ?>
    

提交回复
热议问题