No results found. Try again with different words?

Search must be at least 3 characters.

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 article helpful?
Did not find a solution? We are here to help you succeed.

Related Docs

Scroll to Top