Skip to content

Instantly share code, notes, and snippets.

@Kaiderella
Created July 2, 2016 04:28
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 Kaiderella/263740b71843a29e6cf7d3e107080d29 to your computer and use it in GitHub Desktop.
Save Kaiderella/263740b71843a29e6cf7d3e107080d29 to your computer and use it in GitHub Desktop.
Mở tất cả link trong tab mới
function autoblank($text) {
$return = str_replace('<a', '<a target="_blank"', $text);
return $return;
}
add_filter('the_content', 'autoblank');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment