Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

wordpress get particular page content programmatically

<?php 
$id=47; 
$post = get_post($id); 
$content = apply_filters('the_content', $post->post_content); 
echo $content;  
?>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #wordpress #page #content #programmatically
ADD COMMENT
Topic
Name
7+8 =