wishlist_archive_main

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

add_action('wishlist_archive_main', 'wishlist_archive_main_20201908', 5);

function wishlist_archive_main_20201908($args){

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

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