Last active
February 16, 2018 22:04
-
-
Save grand-lotus-iroh/70b47e2804e0e685d0f3383204a00599 to your computer and use it in GitHub Desktop.
Force Open New Tab Gist Github Footer / Meta Links - Child Theme wp_enqueue_script Function
This file contains 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
function theme_name_scripts() { | |
wp_enqueue_script('embeds', get_stylesheet_directory_uri(). | |
'/js/embeds.js', array(), '1.0.0', true); | |
} | |
add_action('wp_enqueue_scripts', 'theme_name_scripts'); | |
// Force GitHub Gist Embed Links to Open in a New Tab | |
// https://stackoverflow.com/a/34870311 | |
// https://www.engagewp.com/force-github-gist-embeds-to-open-in-a-new-tab-or-window/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment