function my_picu_collection_list( $collection_list ) {
// Open collections in a new tab
return str_replace( '"><a href="', '"><a target="_blank" href="', $collection_list );
}
add_filter( 'picu_collection_list', 'my_picu_collection_list' );
Code language: PHP (php)