How to get the content of the page according to page id in WordPress:-
How to get the content of the page according to page id in WordPress:-
Get the content of the page according to page id in wordpress.
Use the following code:-
<?php
$my_postid = 14;//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;
?>
Total Page Visits: 9750 - Today Page Visits: 2
