Breadcrumb Block
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 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. How to change the markup of the block? add_filter( 'breadcrumb_block_get_breadcrumb_trail', function ( $markup, $args, $breadcrumbs_instance ) { return $markup; }, 10, 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 ); 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. 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 – Build custom layouts and blocks visually in the Block Editor without needing a code editor, using only core blocks and native Gutenberg features. Meta Field Block – A single block to display custom fields in the Block Editor without coding. It supports ACF, MetaBox, WooCommerce, meta, rest field, shortcode and more. Works everywhere: in the Site Editor (FSE), the Block Editor, inside Query Loop, WooCommerce Product Collection, Term Query blocks, and even in template files. 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.
Top keywords
- block20×3.45%
- item13×2.25%
- args9×1.55%
- context9×1.55%
- add8×1.38%
- editor7×1.21%
- separator7×1.21%
- blocks6×1.04%
- id6×1.04%
- page6×1.04%
- return6×1.04%
- 'breadcrumb5×0.86%
Mobile Menu Builder for WordPress
WordPress Mobile Menu Builder plugin is specially designed for mobiles. It is easy to use, customizable, and is highly flexible. It allows you to create a responsive menu that will boost the mobile user experience in your website through providing a simplified mobile navigation experience. Note that this plugin is currently on beta. Thanks! A Short Preview on How the Plugin Works WordPress Mobile Menu Builder: Better Mobile Navigation Experience WordPress Mobile Menu Builder allows users to easily navigate your website without compromising the loading time. Up to four main menu options can be set to simplify the mobile navigation of this responsive menu. Compatibility is not an issue since this WordPress mobile menu is designed to fit perfectly to any mobile screen dimension. With this WordPress menu, you can work on a predesigned mobile menu theme and modify it according to your design preference. You can change the font, icon, and background styles and colors to perfectly match your website’s brand. This is applicable to any WordPress theme. Thus, plugin compatibility issue is never a problem. Specially designed for mobiles WordPress Mobile Menu Builder is particularly designed to perfectly match the interface of any mobile phone. This provides a better user experience since it is exclusively designed for mobile. Ease of modification Easily set the menu’s texts and icons based on the menu options that you want to feature in your site. You can choose to highlight important portions of your blog such as Home, Blog, Contact details, and main website menu. With this responsive menu, you have the complete control to choose whatever you want to display as menus depending on your website’s need. Easily match the style of your website brand Since you have the full control over the styling options, it will be easier for you to match the mobile menu design based on your website’s brand and style. You can easily modify the menu bar’s design to make it complementary to your website’s design and layout. Change menu bar placement The menu bar’s default position is at the bottom of the screen to make it easier for the user’s thumb to reach the menu options. But you can also place the menu bar at the top position if you want to mimic the placement of menu in desktop view. On User Scroll Animation You have the option to fix the menu bar or turn on the user scroll animation. Turning the user scroll animation on lets you hide and show the menu bar upon scrolling. This will help increase the screen space and maximize the user’s mobile view. Show more navigation options through a Popup menu The WordPress Mobile Menu Builder allows you to create an icon for pop-up contents where you can include more navigation options. You can integrate your existing widgets as selections to choose from. This WordPress menu is already widget-ready so can include as many as existing widgets as you like. Fast and optimized mobile experience WordPress mobile menu can be enabled without compromising your website’s performance on mobile. Want to experience customizing your own WordPress Mobile Menu? Install the plugin now to give your users a great mobile experience by giving them the ease of navigating your website! More information Follow the developer @Twitter Visit Main Website