Documentation > Developers > Filter Examples > Collection List Shortcode: Open Collections in a New Tab

Collection List Shortcode: Open Collections in a New Tab

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)

Need help?

If you couldn’t find what you were looking for and need more assistance, please get in touch with us directly and we’re happy to help.