Archived topic
How to add BreadCrumbs to pages?
3 replies · Started by Paul on October 14, 2022
hello how are you
now i created all website content by pages for my all products and services and i dont want install Woo plugin.
So,
1. how to add the BreadCrumbs to every page and product achive? what function or block for that?
2. All content is produced through a separate page, how to make the category and sub-category?
awaiting for your quick response and thanks in advance.
Hi there,
1. most SEO plugins will add the breadcrumbs for you.
Or if you're not using an SEO plugin then use NavXT:
https://wordpress.org/plugins/breadcrumb-navxt/
2. Are you using the default Pages for this ?
hello david
1. i don't want to use more plugins in the websites. i just want to use generatepress features to achieve this if possible
2. What does the default pages for this? i told you that my all contents are done by individual page, and i dont want to install woo plugins,
so, then, how to add the BreadCrumb?
i have one example in the private info and pls check it
1. i don’t want to use more plugins in the websites. i just want to use generatepress features to achieve this if possible
No, it's not possible unfortuanly. You will need to use a plugin or write your own custom functions.
2. What does the default pages for this? i told you that my all contents are done by individual page, and i dont want to install woo plugins,
David was asking if you are using the default pages or custom post types for your content. So you are using pages?
If that's the case, you can try this snippet to enable categories for pages, please be noted, GP doesn't control these settings, they are core WordPress settings.
add_action( 'init', function(){
register_taxonomy_for_object_type('category', 'page');
});