View Mdhooks.php
<?php | |
// Display Custom Excerpt below the headline on single posts. | |
function excerpt_single_post() { | |
if ( is_singular( 'post' ) && has_excerpt() ) { | |
the_excerpt(); | |
} | |
} | |
add_action ('md_hook_after_headline', 'excerpt_single_post'); | |
?> |