WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: breadcrumb-block (Used by 61 domains)

Breadcrumb Block

πŸ‘€ Phi Phan πŸ“¦ v1.1.0 πŸ”— Plugin Homepage

This is a single-block plugin for the breadcrumb trail. It’s simple, lightweight, SEO-friendly, and WooCommerce compatibility. It also includes some simple separator icons. It works everywhere: Page Editor, Site Editor, and template files.

How to customize the breadcrumb

  1. How to change/remove an item?

    add_filter( 'breadcrumb_block_get_item', function ( $item_args, $context, $breadcrumbs_instance ) {
      // Ignore items without context.
      if ( ! $context || ! ( $context['object'] ?? false ) ) {
        return $item_args;
      }
    
      // Eg: remove a term.
      if ( 'term' === ( $context['type'] ?? '' ) && 'term-slug' === $context['object']->slug ) {
        return false;
      }
    
      // Eg: Change the title of a page.
      if ( 'page' === ( $context['type'] ?? '' ) && page_id_to_change === $context['object']->ID ) {
        $item_args[0] = 'Make it shorter';
      }
    
      return $item_args;
    }, 10, 3 );
    

    $item_args is a 3-item array: [$item_label, $item_link, $item_attrs]
    $context is an associative array: ['type' => 'item type', 'object' => 'item object']. type can be one of the following values: front_page, home, shop, page, post, single, term, taxonomy, post_type_archive, search, 404, paged, author, date_year, date_month, date_day, attachment.

  2. How to change the markup of the block?

    add_filter( 'breadcrumb_block_get_breadcrumb_trail', function ( $markup, $args, $breadcrumbs_instance ) {
      return $markup;
    }, 10, 3 );
    
  3. How to add or remove the items from the breadcrumb trail?

    add_filter( 'breadcrumb_block_get_items', function ( $items, $breadcrumbs_instance ) {
      return $items;
    }, 10, 2 );
    
  4. How to use a custom separator for the breadcrumb trail?

    add_filter( 'breadcrumb_block_get_args', function ( $args ) {
      // For example, change separator.
      $args['separator'] = '';
      return $args;
    } );
    

    The custom separator should be an inline SVG. To make sure it displays properly, it should have three attributes: width, height, and fill. The values of these attributes should be as follows: fill="currentColor" width="1em" height="1em".
    Using this hook, you can customize other attributes such as container, before, after, list_tag, item_tag, item_before, item_after, separator.

  5. How to prepend the blog page to all single posts?

    add_action( 'breadcrumb_block_single_prepend', function ( $post, $breadcrumbs_instance ) {
      if ( 'post' === $post->post_type ) {
        $blog_id = get_option( 'page_for_posts');
        if ( $blog_id ) {
          $breadcrumbs_instance->add_item( get_the_title( $blog_id ), get_permalink( $blog_id ) );
        }
      }
    }, 10, 2 );
    

If this plugin is useful for you, please do a quick review and rate it on WordPress.org to help us spread the word. I would very much appreciate it.

Please check out my other plugins if you’re interested:

  • Content Blocks Builder – This plugin turns the Block Editor into a powerful page builder by allowing you to create blocks, variations, and patterns directly in the Block Editor without needing a code editor.
  • Meta Field Block – A block to display custom fields as blocks on the front end. It supports custom fields for posts, terms, users, and setting fields. It can also be used in the Query Loop block.
  • SVG Block – A block to display SVG images as blocks. Useful for images, icons, dividers, and buttons. It allows you to upload SVG images and load them into the icon library.
  • Icon separator – A tiny block just like the core/separator block but with the ability to add an icon.
  • Block Enhancements – Adds practical features to blocks like icons, box shadows, transforms, etc.
  • Counting Number Block – A block to display numbers with a counting effect
  • Better YouTube Embed Block – A block to solve the performance issue with embedded YouTube videos. It can also embed multiple videos and playlists.

The plugin is developed using @wordpress/create-block.

DomainExposuresHeadersLast Checked
c*l*u*a*a.fr (WP 7.0) πŸ‘€ F 2026-06-09 12:47:05
n*c*n*r*.com (WP 7.0) βœ… F 2026-06-07 13:23:07
e*d*e*.au (WP 7.0) βœ… D 2026-06-01 03:53:32
o*f*h*r*h.net βœ… F 2026-05-31 04:02:09
s*m*w*.fr (WP 7.0) βœ… D 2026-05-29 20:47:55
b*s*-*o*b*r*.c*m.ua (WP 7.0) βœ… F 2026-05-28 22:59:41
c*b*a*.com (WP 7.0) βœ… F 2026-05-28 22:38:07
j*o*g*o*.com (WP 7.0) βœ… F 2026-05-28 20:04:43
p*o*o*r*p*e*p*t*a*a.com (WP 7.0) βœ… F 2026-05-28 05:27:02
k*r*n*e*i*e.com βœ… F 2026-05-28 03:45:25
s*i*k*r*a*d*h*e*s.com (WP 7.0) βœ… F 2026-05-27 13:45:47
m*m*.co (WP 7.0) βœ… F 2026-05-27 01:47:56
r*g*r*o*c*.com βœ… F 2026-05-26 04:04:00
f*r*p*j.fr (WP 7.0) βœ… F 2026-05-24 21:38:59
k*v*s*t*d*o.com (WP 7.0) βœ… D 2026-05-24 03:16:34
f*s*o.no βœ… F 2026-05-23 19:05:13
s*n*c*m*n*s.de (WP 7.0) βœ… F 2026-05-23 18:49:11
a*p*o*o.com (WP 6.9.4) βœ… D 2026-05-23 11:58:04
t*s*r*n.ru (WP 7.0) βœ… F 2026-05-22 11:48:34
t*e*i*c*.no βœ… F 2026-05-22 09:21:04
k*o*o*e*d*s*n*.com (WP 6.9.4) βœ… F 2026-05-22 07:12:48
s*a*k*i*h*r*.com (WP 6.9.4) βœ… F 2026-05-22 05:51:26
e*e*p*c*2*.com (WP 6.9.4) βœ… F 2026-05-21 14:26:16
e*r*h*i*e*c.com (WP 6.9.4) βœ… F 2026-05-21 04:48:21
v*n*o*r.c*.id (WP 7.0) βœ… F 2026-05-21 02:02:12
k*i*4.com βœ… F 2026-05-18 16:36:26
t*r*a*l.com (WP 6.9.4) βœ… F 2026-05-18 15:47:06
r*c*p*s*n*o*d*d.com βœ… F 2026-05-18 03:21:09
a*a*s*n*.com (WP 6.9.4) βœ… F 2026-05-17 09:26:21
a*e*i*a*h*r*a*i*t*g*i*d.com βœ… F 2026-05-17 07:59:51
c*n*a*m*e*e*-*e*i*n.de (WP 6.9.1) βœ… F 2026-05-17 05:58:59
h*r*u*g*a*m*h*a.com (WP 6.9.1) βœ… F 2026-05-15 22:29:39
j*k*n*e*i*z.com (WP 6.9.4) βœ… F 2026-05-15 21:04:57
n*o*e*d*s*n*.com (WP 6.9.4) βœ… F 2026-05-15 12:00:44
r*n*l*h*f*r.com (WP 6.9.4) βœ… F 2026-05-15 11:09:15
t*p*c*i*o*.com βœ… F 2026-05-14 21:42:53
m*r*a*s*b*l*b*l*e*t*r.com (WP 6.9.4) βœ… F 2026-05-14 19:17:26
e*g*i*h*t*y*t*r*i*r*c*u*.com βœ… F 2026-05-13 21:02:58
e*d*r*s*c*r*.com (WP 6.9.4) βœ… D 2026-05-13 10:45:16
t*k*i*l*n*c.com (WP 6.9.4) βœ… F 2026-05-13 08:19:26
t*k*i*e*t*e*i*.com (WP 6.9.4) βœ… F 2026-05-13 08:19:26
b*b.nrw (WP 6.9.4) βœ… F 2026-05-12 23:40:33
m*m.mc (WP 6.9.4) βœ… F 2026-05-12 17:03:30
c*u*t*g*-*p.com (WP 6.9.4) βœ… F 2026-05-11 14:29:41
c*a*e*c*n*e*o*f*e.com (WP 6.9.4) βœ… F 2026-05-10 14:08:26
c*p*e*p*i*o*o*h*.com (WP 6.9.4) βœ… F 2026-05-09 22:50:19
c*m*t.ai (WP 6.9.4) βœ… F 2026-05-09 14:31:23
w*n*v*i*.com (WP 6.9.4) βœ… F 2026-05-09 09:07:53
a*r*n*p*u*b*n*.com βœ… F 2026-05-08 15:33:37
s*a*i*g*i*i*s.net βœ… F 2026-05-08 15:16:48
b*d*b*r*c*u*.o*g.uk βœ… F 2026-05-08 12:14:15
1*0*s*a*e.com (WP 6.9.4) βœ… F 2026-05-08 07:43:41
b*a*a*n.ca βœ… D 2026-05-07 18:32:11
c*m*t.ml (WP 6.9.4) βœ… F 2026-05-07 15:46:02
l*i*h*r*u*e.com (WP 6.9.4) βœ… F 2026-05-07 04:40:39
l*i*a*a*a*i*l*t*r*t*r*.com (WP 6.9.4) βœ… F 2026-05-07 03:55:05
b*a*a*n.com βœ… D 2026-05-07 03:20:20
w*t*h*o*p*.com βœ… F 2026-05-04 08:17:56
s*n*c*m*n*s.com (WP 6.9.4) βœ… F 2026-05-04 04:15:33
g*t.day βœ… F 2026-05-03 00:02:17
y*u*t*x*.in (WP 6.9.4) βœ… F 2026-05-02 13:56:56

Top 50 Plugins

Plugin Count
elementor 1,744,327
contact-form-7 1,739,229
elementor-pro 1,027,788
woocommerce 797,925
revslider 605,663
jetpack 456,403
js_composer 420,900
wp-rocket 327,985
essential-addons-for-elementor-lite 264,002
complianz-gdpr 256,882
gravityforms 251,116
cookie-law-info 228,015
instagram-feed 225,059
google-site-kit 219,372
sitepress-multilingual-cms 209,712
google-analytics-for-wordpress 207,790
header-footer-elementor 206,578
bluehost-wordpress-plugin 185,580
elementskit-lite 181,214
gutenberg-core 161,365
gutenberg 159,852
cookie-notice 150,782
litespeed-cache 130,768
wpforms-lite 128,077
the-events-calendar 124,824
gtranslate 122,976
astra-sites 118,495
popup-maker 111,909
woocommerce-payments 110,959
tablepress 99,723
coblocks 99,183
honeypot 96,237
astra-addon 93,115
all-in-one-seo-pack 91,664
wp-smushit 91,020
LayerSlider 89,839
duracelltomi-google-tag-manager 89,212
bb-plugin 85,448
premium-addons-for-elementor 84,729
akismet 83,659
cleantalk-spam-protect 82,375
mailchimp-for-wp 82,191
woocommerce-gateway-stripe 79,841
megamenu 79,695
borlabs-cookie 79,524
ml-slider 78,664
fusion-builder 77,466
ewww-image-optimizer 75,442
formidable 75,398
smart-slider-3 75,144

Top 50 Themes

Theme Count
hello-elementor 606,398
Divi 501,867
astra 417,125
flatsome 125,696
Avada 121,657
generatepress 115,745
pub 111,465
oceanwp 82,272
kadence 78,633
enfold 70,932
salient 65,007
h4 55,474
twentyseventeen 54,842
twentytwentyfour 52,644
bb-theme 51,719
betheme 51,552
cocoon-master 50,876
blocksy 49,730
dt-the7 45,261
twentytwentyfive 43,293
neve 38,751
Avada-Child-Theme 36,699
gox 34,496
woodmart 32,986
bridge 32,224
twentytwentyone 31,352
lightning 29,583
twentytwenty 28,979
swell 27,861
Impreza 26,096
bricks 25,386
twentytwentythree 23,372
Newspaper 23,298
twentytwentytwo 19,595
epik-redesign 19,302
uncode 18,515
twentysixteen 17,588
pro 17,119
sydney 16,624
storefront 16,445
extendable 14,924
Total 14,496
yith-wonder 13,365
hello-theme-child-master 13,309
factory-templates-4 13,223
themify-ultra 12,876
yootheme 12,638
hestia 12,610
twentynineteen 11,800
porto 11,713