How-to get the get_category_parents() breadcrumbs trail without link on last item

Just a question : I want to use get_category_parents() to display a breadcrumb on a category archive page, but with no link on the current displayed category (SEO purposes, because they say that’s a link to itself. I’m not sure search engines are that stupid, but anyway). Like this : link_home » link_cat1 » link_subcat1 … Read more

Breadcrumbs with custom post type without plugin

I have used the following function for breadcrumbs on every site to date, but todays site has 3 custom post types and the client would like the breadcrumbs working, e.g. instead of “home / wines / naire blanco” we just get “home / / naire blanco”. function the_breadcrumb() { echo ‘<ol class=”breadcrumb” itemprop=”breadcrumb”>’; if (!is_home()) … Read more

How to add category to the permalink and breadcrumb?

I have just created a post called dolphin with the category species, but it apperas like http://example.com/dolphin/ How can I set the species category appear in the URL..like http://example.com/especies/dolphin/ and in the breadcrumb too Thanks! 1 Answer 1 What you are looking for is called pretty permalink. You can set it in the WordPress’s settings. … Read more

how to automatically generate hierarchical menus from hierarchy of pages?

I have a photo site, and I take care to crested a logical nested hierarchy of pages. e.g. for photos I just posted, I created the following pages: site.com/2013/ site.com/2013/colorado/ site.com/2013/colorado/crested-butte/ the last of these is the one on which I placed my photos. I want hierarchical menus that are easy to navigate/browse. How do … Read more

Yoast SEO breadcrumbs: how to create a filter that uses the url slug for breadcrumb titles

I know we can manually edit the breadcrumb title for a page or post using Yoast SEO’s breadcrumb functionality. But with thousands of posts and pages on an existing site this isn’t desirable. My brain goes full potato when it comes to stuff other than html and css and maybe hacking some existing PHP code … Read more

recommended breadcrumb plugins with possibility for hiding “Home” link [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7 years ago. Improve this question I am using Breadcrumb NavXT plug-in in my pages but now I am facing a problem I need to hide the … Read more

If on term-page -> get the current term?

I’m trying to write a kind of “breadcrumb” function in my “functions.php” I’d like to query if I’m on a term-page and if so I want to print the current term I’m in. By “term-page” I mean the following. I list all terms of a custom-taxonomy (associated with a custom-post-type) as kind of categories in … Read more

Custom Taxonomy Breadcrumb Navigation

I’m completely new to custom post types and custom taxonomies, so bear with me. I’m trying to create a breadcrumb navigation for the custom taxonomy project-category within the custom post type projects. Essentially, I need it to work like this: Custom Post Type > Custom Taxonomy Level 1 > Custom Taxonomy Level 2 > Custom … Read more