Guest User

Untitled

a guest
Dec 6th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. add_filter( 'woo_portfolio_item_extras_html', 'woo_custom_portfolio_item_extras_html', 10, 2 );
  2.  
  3. function woo_custom_portfolio_item_extras_html ( $html, $data ) {
  4.  
  5. if ( $data['display_url'] != '' ) {
  6. $html = str_replace( 'class="button"', 'class="button" target="_blank"', $html );
  7. }
  8.  
  9. return $html;
  10. } // End woo_custom_portfolio_item_extras_html()
Add Comment
Please, Sign In to add comment