Skip to content

Instantly share code, notes, and snippets.

View wpgaurav's full-sized avatar
👋
Hello!

Gaurav Tiwari wpgaurav

👋
Hello!
View GitHub Profile
@wpgaurav
wpgaurav / Mdhooks.php
Last active October 16, 2020 09:12
Marketers Delight Hooks
<?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');
?>