-
-
Save AnnaCrumina/5e9742a73d0593e9b09e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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