This code is for creating a new attribute for the shortcode of wishlist archive page.
add_filter('wishlist_archive_atts', 'wishlist_archive_atts_20201908', 5);
function wishlist_archive_atts_20201908($atts){
$atts['custom_atts'] = 'Custom atts';
return $atts;
}
For Example:
[wishlist_archive id="1234"]
