Answers for "get content wordpress by post id"

PHP
0

wp get post content by id

$post_id = 5// example post id
$post_content = get_post($post_id);
$content = $post_content->post_content;
echo apply_filters('the_content',$content);
Posted by: Guest on July-19-2020
0

get the content from post id wordpress

$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;
Posted by: Guest on March-03-2021

Code answers related to "get content wordpress by post id"

Browse Popular Code Answers by Language