Created
February 22, 2021 09:14
-
-
Save propertyhive/35ca3458c1c704f080992fd67501ad97 to your computer and use it in GitHub Desktop.
Open links in subgrids in new tab set target
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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