Customize Breadcrumbs

#759042
  • Resolved Anonymous
    Rank Math free

    Hello,

    I would be interested in adding a page to the beginning of the breadcrumb.

    For example:
    Page – Breadcrumb of rank math.

    How could I do it?

    When I used yoast there was a filter so you could put the page you wanted at the beginning.

    Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    Thank you for reaching out to us regarding customizing the breadcrumbs in Rank Math.

    To add a specific page to the beginning of the breadcrumb trail in Rank Math, you can achieve this by using custom code snippets. Here is an example of how you can add a Blog page to your breadcrumbs:

    1. If you have set a static page as your blog page, navigate to WordPress DashboardRank Math SEOGeneral SettingsBreadcrumbs.

      Navigate to Breadcrumbs

    2. Scroll down and enable Show Blog Page. Then, click Save Changes.

      Enable Show Blog Page

    If you have not set a static page as your blog page in WordPress, you can use a filter to add a Blog page to your breadcrumbs. Here is the code snippet you can use:

    /**
     * Filter to add a Blog page to Rank Math Breadcrumbs.
     */
    add_filter( 'rank_math/frontend/breadcrumb/items', function( $crumbs, $class ) {
        $blog_crumb = array( 'Blog', 'https://rankmath.com/wp-content/uploads/2021/08/Oxygen-builder-advanced-tab-shortcode-styling.jpg' );
        array_unshift( $crumbs, $blog_crumb );
        return $crumbs;
    }, 10, 2);

    Please ensure to replace 'https://rankmath.com/wp-content/uploads/2021/08/Oxygen-builder-advanced-tab-shortcode-styling.jpg' with the URL of your blog page.

    If you need further assistance or have any more questions, feel free to ask. We are here to help!

    Sources:
    How to Customize Breadcrumbs in Rank Math » Rank Math
    How to Enable Breadcrumbs on Your Website With Rank Math SEO » Rank Math
    Is Rank Math SEO Compatible With Oxygen Builder? » Rank Math

    Anonymous
    Rank Math free

    Thanks.

    Hello,

    We are glad to know that this issue has been resolved. Thank you for letting us know.

    This ticket will be closed now, but you can always open a new one if you have any other questions or concerns. We are here to help you with anything related to Rank Math.

    We appreciate your patience and cooperation throughout this process.

    Thank you for choosing Rank Math.

Viewing 3 replies - 1 through 3 (of 3 total)

The ticket ‘Customize Breadcrumbs’ is closed to new replies.