Add the following code to your theme’s function.php file, or a functionality plugin to modify Open GitHub Gists in New Window in WordPress.
wp_enqueue_script( 'gist-embeds-new-tab', get_bloginfo( 'stylesheet_directory' ) . '/js/gist-embeds-new-tab.js', array( 'jquery' ), '1.0.0' );
To open GitHub Gists in a new Window in WordPress adjust the jQuery in the Gist to include the “Target = _Blank” code.
jQuery(document).ready(function($){$('.gist-meta').find('a').attr('target', '_blank'); });
Share Your Two Cents