Add Full Function Sidebar Widgets to Carbonate

by Josh Koop | Last Updated: February 13, 2021
As an Amazon Associate we earn from qualifying purchases made on our website. If you make a purchase through links from this website, we may get a small share of the sale from Amazon and other similar affiliate programs. You can read our complete disclaimer information for more details.

For many who choose to run Carbonate they find they are limited by the missing sidebar area that is there on many websites for desktop browser use.

While we are moving to a world built on and for mobile devices the desktop still runs solid volume and can provide a good chunk of income that is current missing in Carbonate.

Well today I took and put together code that gives you a sidebar area that Matt provides once you buy the theme but made conversions to get you a sidebar area that is driven by the normal Appearance -> Widgets area.

This allows you to install and add the plugins and extensions to the sidebar you would on virtually any other theme while maintaining the impressive speed benefits to Carbonate.

Adding Sidebar Functionality

For this you need to add some code to the functions.php file that creates the sidebar, adds it to the Appearance and Widget area to allow you to add on the blocks you want to show on your posts.

Find this section in the functions.php:

add_action( 'wp_enqueue_scripts', 'theme_styles');

and paste the code below after that line.

function my_custom_sidebar() {
    register_sidebar(
        array (
            'name' => __( 'Carbonate Sidebar', 'Carbonate' ),
            'id' => 'custom-side-bar',
            'description' => __( 'Custom Sidebar', 'Carbonate' ),
            'before_widget' => '<div class="widget-content">',
            'after_widget' => "</div>",
            'before_title' => '<h3 class="widget-title">',
            'after_title' => '</h3>',
        )
    );
}
add_action( 'widgets_init', 'my_custom_sidebar' );

Which will then look similar to this:

add_action( 'wp_enqueue_scripts', 'theme_styles');

function carbonate_custom_sidebar() {
    register_sidebar(
        array (
            'name' => __( 'Carbonate Sidebar', 'Carbonate' ),
            'id' => 'custom-side-bar',
            'description' => __( 'Custom Sidebar', 'Carbonate' ),
            'before_widget' => '<div class="widget-content">',
            'after_widget' => "</div>",
            'before_title' => '<h3 class="widget-title">',
            'after_title' => '</h3>',
        )
    );
}
add_action( 'widgets_init', 'carbonate_custom_sidebar' );

?>

Now that we have added the sidebar as a function for the theme we need to add the area to place the block. This is pretty easy as you will just need to replace the code from the example Matt G provides:

<aside>
	Sidebar
</aside>

With the following code:

<aside>
	<?php if ( is_active_sidebar( 'custom-side-bar' ) ) : ?>
 		<?php dynamic_sidebar( 'custom-side-bar' ); ?>
	<?php endif; ?>
</aside>

Which will end up looking similar to this:

<div class="col-lg-4">
	<aside>
		<?php if ( is_active_sidebar( 'custom-side-bar' ) ) : ?>
 			<?php dynamic_sidebar( 'custom-side-bar' ); ?>
		<?php endif; ?>		
	</aside>
</div>

All that is needed at this point would be to flush any caching you use and you will have a functioning sidebar that is driven by your widgets you choose to add.

Screenshot showing the ability to add widgets into a Carbonate Custom Sidebar.

If you find this helpful please feel free to donate spare change (if you can) over here.

I love technology, I have plenty of technical side experience but never really thought of blogging as a way to earn an income. With everything that has gone on in the last couple years and the instability of the job markets I started to learn how to blog and build affiliate niche sites to add more income channels to give me the chance to break free from the financial chains that bind me and find real freedom!