breadcrump

#279749
  • Resolved Alisharifinasr
    Rank Math free

    Hi rank math staff
    I need your help
    1)I want to show the Breadcrumbs only on my post like this
    “home > category > postname”
    2) hide breadcrumbs in home page and category pages

Viewing 1 replies (of 1 total)
  • Prabhat
    Rank Math agency

    Hello,

    Thank you for contacting us.

    1. Please enable the Show Category(s) option from your WordPress admin area > Rank Math > General Settings > Breadcrumbs.

    Further, head over to your WordPress admin area > Rank Math > Titles & Meta > Post, and set the Primary Taxonomy as Categories.

    2. You can use the following filter to remove breadcrumbs from your homepage and category pages:

    /**
     * Allow changing or removing the Breadcrumb items
     */
    add_filter( 'rank_math/frontend/breadcrumb/items', function( $crumbs, $class ) {
        if(!is_front_page() && !is_category()){
    	return $crumbs;
        }
    }, 10, 2);
    

    Here’s how to add the filter:
    https://rankmath.com/kb/wordpress-hooks-actions-filters/

    Hope this helps.

    Thank you.

    Hello,

    Since we did not hear back from you for 15 days, we are assuming that you found the solution. We are closing this support ticket.

    If you still need assistance or any other help, please feel free to open a new support ticket, and we will be more than happy to assist.

    Thank you.

Viewing 1 replies (of 1 total)

The ticket ‘breadcrump’ is closed to new replies.