Proper way to get page content

后端 未结 8 1889
不思量自难忘°
不思量自难忘° 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

    A simple, fast way to get the content by id :

    echo get_post_field('post_content', $id);
    

    And if you want to get the content formatted :

    echo apply_filters('the_content', get_post_field('post_content', $id));
    

    Works with pages, posts & custom posts.

提交回复
热议问题