Thursday, March 1, 2018

How to show page content using page title in wordpress | Wordpress.

<?php
$page = get_page_by_title( 'About' );
$content = apply_filters('the_content', $page->post_content); 
echo $content;
?>

No comments:

Post a Comment