Skip to content

Instantly share code, notes, and snippets.

@seothemes
Created April 2, 2019 23:55
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 seothemes/52ea493222d9d6aa74111a533418b9e8 to your computer and use it in GitHub Desktop.
Save seothemes/52ea493222d9d6aa74111a533418b9e8 to your computer and use it in GitHub Desktop.
Simple Pricing Table - open links in new window
<?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