Add Custom Sidebar to WordPress
Add a Custom Sidebar to WordPress Function.php File and Display on Front End.
These are short snippets to insert sidebar into the front end of Wordpress website. Use it in your projects.
Functions.php
function my_custom_sidebar() { register_sidebar( array ( 'name' => __( 'Custom', 'your-theme-domain' ), 'id' => 'custom-side-bar', 'description' => __( 'Custom Sidebar', 'your-theme-domain' ), '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' );
Front End Code
<?php if ( is_active_sidebar( 'custom-side-bar' ) ) : ?> <?php dynamic_sidebar( 'custom-side-bar' ); ?> <?php endif; ?>