Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Add Script to Footer */
- function make_post_link_to_open_new_tab_in_archive() {
- if ( is_archive() ) :
- ?>
- <script>
- /* Make Post Link Open New Tab */
- (function ($) {
- $(window).ready(function () {
- $('.jeg_post a, .jeg_posts a').each(function () {
- $(this).attr('target', '_blank');
- })
- })
- })(jQuery);
- </script>
- <?php
- endif;
- }
- add_action( 'wp_footer', 'make_post_link_to_open_new_tab_in_archive' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement