wishlist_single_main

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

add_action('wishlist_single_main', 'wishlist_single_main_20201908', 0);

function wishlist_single_main_20201908($atts){

    $wishlist_id = isset( $atts['id'] ) ? $atts['id'] : 0;
    //echo '<pre>'.var_export($wishlist_id, true).'</pre>';
    ?>
    <p>Custom HTML here</p>
    <?php
}
wishlist_single_main 1