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;
?>
Related posts:-
How to display posts from specific category on the front page as feature in Worpress website.
How to secure WordPress website from various attack Hackers,Virus and Spam.
How to get data from Advanced Custom Fields plugin in WordPress
How To Create Link To External Resources In WordPress Without Plugin ?
Total Page Visits: 10998 - Today Page Visits: 1