Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created September 23, 2017 23:01
Show Gist options
  • Save braddalton/14a5f5cd8d4c26ec40793afcba6e81b6 to your computer and use it in GitHub Desktop.
Save braddalton/14a5f5cd8d4c26ec40793afcba6e81b6 to your computer and use it in GitHub Desktop.
Shortcode Before Title On Single Posts In Genesis
add_action( 'genesis_before_entry', 'vr_before_entry' );
function vr_before_entry() {
if ( ! is_singular( 'post' ) ) {
return;
}
echo do_shortcode('[your_shortcode_handle]');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment