Skip to content

Instantly share code, notes, and snippets.

@DanielFloeter
Last active April 8, 2020 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DanielFloeter/cd98883b2dbb06555d180d4dfa6f62a9 to your computer and use it in GitHub Desktop.
Save DanielFloeter/cd98883b2dbb06555d180d4dfa6f62a9 to your computer and use it in GitHub Desktop.
Open title link in new window or tab (Filter extension)
<?php
// Filter extension:
function open_in_new_tab_callback( $title ) {
// ToDo Just the title and no HTML
return $title;
}
add_filter( 'widget_title', 'open_in_new_tab_callback' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment