Hello,
Thank you for your patience.
The Tips & Guides is created as an actual page, that’s why it is not getting included in the breadcrumbs to follow the hierarchal order.
Here’s the code to insert that page into your single post breadcrumbs:
add_filter( 'rank_math/frontend/breadcrumb/items', function( $crumbs, $class ) {
//Adding to single posts
if(is_singular('post')){ // change to match the actual custom post type name
$value[] = array(
'Tips & Guides',
'https://healthspaninsider.com/tips-guides-2/',
'hide_in_schema' => false
);
//add this value as the second item in array
array_splice( $crumbs, 1, 0, $value );
return $crumbs;
}
return $crumbs;
}, 10, 2);
However, if you’re unsure how to add the breadcrumbs using the filter, then we can add it for you instead by logging in to your site.
To do that, please edit the first post on this ticket and include your WordPress & FTP logins in the designated Sensitive Data section.
Please do take a complete backup of your website before sharing the information with us.

It is completely secure and only our support staff has access to that section. If you want, you can use the below plugin to generate a temporary login URL to your website and share that with us instead:
https://wordpress.org/plugins/temporary-login-without-password/
You can use the above plugin in conjunction with the WP Security Audit Log to monitor what changes our staff might make on your website (if any):
https://wordpress.org/plugins/wp-security-audit-log/
We really look forward to helping you.