wishlist_archive

Add this code to the Theme’s function.php file to add some custom HTML in your Archive wishlist page.

add_action('wishlist_archive', 'wishlist_archive_20201908', 5);

function wishlist_archive_20201908($atts){

    //echo '<pre>'.var_export($atts, true).'</pre>';

    ?>
    <span>Custom HTML here</span>
    <?php
}
wishlist_archive 1