Chào các bạn, khi các bạn sử dụng plugin Breadcrumb NavXT khi tạo breacrumb ở site. Ở cuối breadcrumb sẽ luôn để tiêu đề post hay page bạn đang truy cập. Vấn đề đặt ra là hôm nay leader kêu mình ở trang bài viết bỏ đi tiêu đề bài viết cuối ở breadcrumb đó, vì sẽ trùng lặp từ khóa. Mình tìm trên mạng đoạn code sau, chia sẽ lại cho các bạn muốn giải quyết vấn đề giống mình

add_action('bcn_after_fill', 'bcnext_remove_current_item');

function bcnext_remove_current_item($trail)
{
	//Make sure we have a type
	if(isset($trail->breadcrumbs[0]->type) && is_array($trail->breadcrumbs[0]->type) && isset($trail->breadcrumbs[0]->type[1]) && is_singular('post'))
	{
		//Check if we have a current item
		if(in_array('current-item', $trail->breadcrumbs[0]->type))
		{
			//Shift the current item off the front
			array_shift($trail->breadcrumbs);
		}
	}
}

Chèn đoạn code trên vào file function.php của theme nha bạn

0 CommentsClose Comments

Leave a comment