Viewing 1 replies (of 1 total)
  • Plugin Author Justin Sternberg

    (@jtsternberg)

    It is possible via the gtc_list_item_format filter:

    
    function modify_gtc_list_item_format_external_links( $format ) {
    	return '<li>%1$s<a class="gtc-link" href="%2$s" target="_blank" rel="noopener noreferrer">%3$s</a></li>';
    }
    add_filter( 'gtc_list_item_format', 'modify_gtc_list_item_format_external_links' );
    
Viewing 1 replies (of 1 total)
  • The topic ‘Is it possible to open link in new tab?’ is closed to new replies.