my_wishlist

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

add_action('my_wishlist', 'my_wishlist_20201908', 5);

function my_wishlist_20201908($atts){

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

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