/ Documentation /General/How to Remove Home List Item from Breadcrumblist Schema?

How to Remove Home List Item from Breadcrumblist Schema?

Schema Pro allows you to Remove Home list item from BreadcrumbList schema type.

You will need to use wp_schema_pro_link_to_frontpage filter to be able to Remove Home list item.

Example: Add the following code to your functions.php file.

add_filter( 'wp_schema_pro_link_to_frontpage', 'my_function', 10, 1 );
function my_function( $bool ) {
  return false;
}

Here is how the Home list will be removed after you add the above code to your functions.php file.

Was this doc helpful?
What went wrong?

We don't respond to the article feedback, we use it to improve our support content.

Need help? Contact Support
On this page
Scroll to Top