Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created February 22, 2021 09:14
Show Gist options
  • Save propertyhive/35ca3458c1c704f080992fd67501ad97 to your computer and use it in GitHub Desktop.
Save propertyhive/35ca3458c1c704f080992fd67501ad97 to your computer and use it in GitHub Desktop.
Open links in subgrids in new tab set target
add_filter('propertyhive_subgrid_link_target', 'open_subgrid_links_in_new_tab');
function open_subgrid_links_in_new_tab($target)
{
return '_blank';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment