Home / Admin / Add Custom Element to Breadcrumbs
Duplicate Snippet

Embed Snippet on Your Site

Add Custom Element to Breadcrumbs

This snippet adds a custom Element called "Resources" (with its link) as the 1st element in the breadcrumb of Posts and Categories.

<10
Code Preview
php
<?php
add_filter( 'aioseo_breadcrumbs_trail', function( $crumbs ) {
    if(is_singular('post') || is_category()){
		$blog = [
			'label' => 'Resources',
			'link' => 'https://whatisnosy.com/resources',
			'type' => ''
		];
		array_splice( $crumbs, 0, 0, [$blog] );
	}
    return $crumbs;
}, 10, 2);

Comments

Add a Comment