Created
April 2, 2019 23:55
-
-
Save seothemes/52ea493222d9d6aa74111a533418b9e8 to your computer and use it in GitHub Desktop.
Simple Pricing Table - open links in new window
This file contains hidden or 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
<?php | |
// Do NOT include the opening php tag. | |
add_filter( 'spt_markup_link_open', 'prefix_spt_button_markup' ); | |
/** | |
* Open Simple Pricing Table links in new tab. | |
* | |
* @since 1.0.0 | |
* | |
* @return string | |
*/ | |
function prefix_spt_button_markup() { | |
return '<a class="pricing-table__link" href="%s" target="_blank">'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment