10,000+
February 17, 2026
January 4, 2014
SMK Sidebar Generator is a powerful yet easy-to-use WordPress plugin that lets you create unlimited custom sidebars and conditionally display them anywhere on your website – without writing a single line of code.
Whether you need different sidebars for your blog, shop, landing pages, or specific posts, this plugin gives you complete control over your widget areas.
Unlimited Sidebars
Create as many sidebars as you need. Perfect for blogs, business sites, WooCommerce stores, or any WordPress website.
Replace Theme Sidebars
Seamlessly replace your theme’s default sidebars with custom ones. No theme file editing required.
Conditional Display
Show different sidebars based on:
Drag and Drop Management
Reorder your sidebars with an intuitive drag-and-drop interface. Easily organize and prioritize your widget areas.
Responsive Admin Interface
Modern, clean admin UI that works great on any device – desktop, tablet, or mobile.
Shortcode Support
Display any sidebar anywhere using a simple shortcode: [smk_sidebar id="your-sidebar-id"]
Developer Friendly
Use PHP functions in your theme templates:
<?php
// Display sidebar by ID
if ( function_exists( 'smk_sidebar' ) ) {
smk_sidebar( 'your-sidebar-id' );
}
// Or use WordPress native function
dynamic_sidebar( 'your-sidebar-id' );
// Get all registered sidebars
$sidebars = smk_get_all_sidebars();
?>
smk-sidebar-generator folder to /wp-content/plugins/Yes! Use the shortcode [smk_sidebar id="your-sidebar-id"] in any text widget or shortcode module. You can find each sidebar’s shortcode displayed in its settings panel.
No. SMK Sidebar Generator is lightweight and only loads its assets on the admin pages where needed. On the frontend, it simply filters which sidebar to display with minimal overhead.
Yes! The plugin works with any properly coded WordPress theme. Your generated sidebars will automatically inherit your theme’s sidebar styling.
Yes, use either method in your theme template files:
<?php smk_sidebar( 'your-sidebar-id' ); ?>
Or the native WordPress function:
<?php dynamic_sidebar( 'your-sidebar-id' ); ?>
The sidebar ID is displayed in each sidebar’s settings panel, along with the shortcode. You can also use smk_get_all_sidebars() to get an array of all sidebar IDs and names.
Yes! When adding conditions, select the post type archive or use taxonomy conditions to target specific categories, tags, or custom taxonomies.
Yes! You can create shop-specific sidebars and use conditions to display them only on WooCommerce pages like the shop, product pages, cart, or checkout.
Yes! The plugin is translation-ready. You can contribute translations on translate.wordpress.org or create your own using the included POT file.
Please use the GitHub Issues page for bug reports and feature requests.
smk_get_all_sidebars() helper function