certainlyakey
6/23/2014 - 1:21 PM

Get specific page teaser in Wordpress (text before more tag)

Get specific page teaser in Wordpress (text before more tag)

<?php
$page_id = 5824;
$page_data = get_page( $page_id );
$exploded = explode("<!--more-->",$page_data->post_content);
$the_content = apply_filters('the_content',$exploded[0]);
echo $the_content;
?>