Hi I am trying to add something to a page which allows me to store a cstom field which contains an intro paragraph for pages that I have set up. Below is my code. Advice appreciated!
function parentExcerpt () {
if (get_post_meta($post->ID, 'breakout_text', true) ) : ?>
<h3><?php echo get_post_meta($post->ID, 'breakout_text', true); ?></h3>
<?php endif;
}
add_action ("thematic_post", "parentExcerpt", 5);
?>