wishlist_single_after_loop

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

add_action('wishlist_single_after_loop', 'wishlist_single_after_loop_20201908', 5);

function wishlist_single_after_loop_20201908($wishlist_id){

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

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