Home › Forums › Pro Support › custom link or none? › Reply To: custom link or none?
December 23, 2016 at 12:15 pm
#1304
Keymaster
You might be able to use the wpsp_image_data filter..:
add_filter( 'wpsp_image_data','tu_add_image_data' );
function tu_add_image_data( $data ) {
if ( is_page( 'whatever' ) ) {
$data = 'target="_blank"';
}
return $data;
}