Get WordPress post content by post id olatechproFebruary 19, 20231 Views How can I get WordPress post content by post id? Post Views: 1 Related postsGet rid of this Strict Standards warningWooCommerce: get_current_screen not working with multi languageCan’t login on WordPressForce HTTPS using .htaccess – stuck in redirect loopWordPress: Ajax not working to insert, query and result dataHow Can I pass an image file to wp_handle_upload?
Simple as it gets $my_postid = 12;//This is page id or post id $content_post = get_post($my_postid); $content = $content_post->post_content; $content = apply_filters('the_content', $content); $content = str_replace(']]>', ']]>', $content); echo $content; Log in to Reply
Another way to get a WordPress post content by post id is: $content = apply_filters('the_content', get_post_field('post_content', $my_postid)); To complete this answer I have also added method 01 and method 02 to this answer. Method 01 (credit goes to bainternet): $content_post = get_post($my_postid); $content = $content_post->post_content; $content = apply_filters('the_content', $content); $content = str_replace(']]>', ']]>', $content); Method 02 (credit goes to realmag777): $content = get_post_field('post_content', $my_postid); Method 03: $content = apply_filters('the_content', get_post_field('post_content', $my_postid)); Read the What is the best / efficient way to get WordPress content by post id and why? question to get an idea about which one you should use from the above three. Log in to Reply
Starting from wordpress 5.2.0, We can now use post object or post id get_the_content function. We can also pass $more_link_text and $strip_teaser get_the_content( string $more_link_text = null, bool $strip_teaser = false, WP_Post|object|int $post = null ) We can use it along with apply_filters like below to get all filters of the_content apply_filters( 'the_content', get_the_content(null, false, $post_id)), Reference Log in to Reply
If you need more than one post, use get_posts(). It leaves the main query alone and returns an array of posts that’s easy to loop over. Log in to Reply
Simple as it gets
Another way to get a WordPress post content by post id is:
To complete this answer I have also added method 01 and method 02 to this answer.
Method 01 (credit goes to bainternet):
Method 02 (credit goes to realmag777):
Method 03:
Read the What is the best / efficient way to get WordPress content by post id and why? question to get an idea about which one you should use from the above three.
Starting from wordpress 5.2.0,
We can now use post object or post id
get_the_content
function.We can also pass $more_link_text and $strip_teaser
We can use it along with
apply_filters
like below to get all filters ofthe_content
Reference
If you need more than one post, use
get_posts()
. It leaves the main query alone and returns an array of posts that’s easy to loop over.