Skip to content

Instantly share code, notes, and snippets.

@jpmarchand
Forked from gMagicScott/functions.php
Last active September 29, 2019 08:35
  • Star 1 You must be signed in to star a gist
  • Fork 0 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
//* Force links to be opened in a new tab
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($(this).find(".entry-title a").attr("href"), "_blank");
});
});
</script>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment