Last active
January 7, 2017 15:07
-
-
Save gMagicScott/68536f1063a64ff5583b9dbea96c0ffb to your computer and use it in GitHub Desktop.
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
<?php | |
//* Do NOT include the opening php tag | |
//* Add JS to allow elements to be faux anchors | |
add_action( 'wp_footer', 'bg_script_clickable' ); | |
function bg_script_clickable() { | |
echo '<script type="text/javascript">jQuery(document).ready(function($){$(".content .entry").click(function(){window.open($("a",this).attr("href"), "_blank");});});</script>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment