wishlist_single_meta

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

add_action('wishlist_single_meta', 'wishlist_single_meta_20201908', 0);

function wishlist_single_meta_20201908($atts){

    $wishlist_id = isset( $atts['id'] ) ? $atts['id'] : 0;

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

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