nerijus
2/28/2014 - 4:25 PM

Get post with filters by ID

Get post with filters by ID

<?php
$my_postid = 11;//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(']]>', ']]&gt;', $content);
?>