Skip to content

Instantly share code, notes, and snippets.

@gMagicScott
Last active January 7, 2017 15:07
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
<?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