Tuesday, September 11, 2012

How to get specific particular page content in WordPress..?

How to get specific particular page content in WordPress..?

i answer my own question.. a little apply_filter and there we go... the codex should be more specific.. used it every time !


<?php 
 $id=47;
 $post = get_page($id); 
 $content = apply_filters('the_content', $post->post_content); 
 echo $content;
?>

No comments:

Post a Comment