If anyone can help, I would be much appreciative. I have the title and the content from a page showing up in another page with this code:
<?php $page_id = 38; $page_data = get_page( $page_id );
echo '<h3>'. $page_data->post_title .'</h3>';
echo apply_filters('the_content', $page_data->post_content);
?>
It works great but I need the title to link to the page since the content disappears when viewing on mobile.