Breadcrumbs last item

#150717
  • Resolved Gierand
    Rank Math free

    Hi,
    Iā€™m trying to replace the <span class="last">Lorem ipsum</span> with <a href="[ U R L ]" class="last" aria-current="page">Lorem ipsum</a> in the breadcrumbs markup.

    I have tried this and several similar things, but nothing works:

    add_filter( 'rank_math/frontend/breadcrumb/html', function( $html, $crumbs, $class ) {
      return preg_replace('/<span class="last">(.*?)<\/span>/', '<a href="[ L I N K ? ]"  class="last" aria-current="page">$1</a>', $html );
        return $html;
    }, 10, 3);

    How do?

    Thanks.

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

    Thank you for contacting Rank Math and bringing your concern to our attention.

    Could you please try this filter? This should run in your theme’s functions.php file:

    add_filter( 'rank_math/frontend/breadcrumb/html', function( $html, $crumbs, $class ) {
    	$html = str_replace('<span class="last">Lorem ipsum</span>', '<a href="[ U R L ]" class="last" aria-current="page">Lorem ipsum</a>', $html);
    	return $html;
    }, 10, 3);

    I hope that helps. Thank you, and looking forward to your update.

    Thanks for the answer, but it can’t work.

    How to add auto generated link to the last item?

    Hello,

    Please use this code instead:

    add_filter( 'rank_math/frontend/breadcrumb/html', function( $html, $crumbs, $class ) {
    	$html = str_replace('<span class="last">'.get_the_title().'</span>', '<a href="'.get_the_permalink().'">'.get_the_title().'</a>', $html);
    	return $html;
    }, 10, 3);

    Let me know if it’s working on your end.

    Looking forward to helping you.

    It works! Thank you so much for the help and response šŸ™‚

    Hello,

    We are super happy that we have addressed your concern. If you have any other questions in the future, know that we are here to help you.

    If you don’t mind us asking, could you please leave us a review (if you haven’t already) on https://wordpress.org/support/plugin/seo-by-rank-math/reviews/#new-post about your overall experience with Rank Math? We appreciate your time and patience.

    If you have another question in the future, please feel free to create a new forum topic, and it will be our pleasure to assist you again.

    Thank you.

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

The ticket ‘Breadcrumbs last item’ is closed to new replies.