Sidebar Filmes
if ( ! function_exists( 'filmes_sidebar' ) ) {
// Register Sidebar
function filmes_sidebar() {
$args = array(
'id' => 'sidebar-filmes',
'name' => __( 'Filmes ', 'joincult_lang' ),
'description' => __( 'Barra Lateral de Filmes', 'joincult_lang' ),
'class' => 'four columns content_display_col3',
'before_title' => '<div class="widget-title"><h2>',
'after_title' => '</h2></div',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '<div class="margin-bottom"></div></div>',
);
register_sidebar( $args );
}
// Hook into the 'widgets_init' action
add_action( 'widgets_init', 'filmes_sidebar' );
}