Skip to content

Instantly share code, notes, and snippets.

@AnnaCrumina
Forked from crumina/functions.php
Created May 16, 2015 10:35
Show Gist options
  • Save AnnaCrumina/5e9742a73d0593e9b09e to your computer and use it in GitHub Desktop.
Save AnnaCrumina/5e9742a73d0593e9b09e to your computer and use it in GitHub Desktop.
/**
* Custom shortcode on all pages
* in header.php
*
* @since 1.0.0
*/
function shortcode_after_header ()
{
echo do_shortcode('[Your shortcode MUST be HERE]');
}
add_action('reactor_content_before', 'shortcode_after_header', 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment