To Display Perticular POST Content in Wordpress

Following php tag for WordPress to display the particular post or page Content on your wordpress template.

$my_postid is the id of page or post.
Write the page id that you want to display the content..



<?php
$my_postid = 25;//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;
?>

Comments