__('Main Sidebar Area', 'acmephoto'),
'id' => 'acmephoto-sidebar',
'description' => __('Displays items on sidebar', 'acmephoto'),
'before_widget' => '',
'before_title' => '
',
));
register_sidebar(array(
'name' => __('Left Sidebar Area', 'acmephoto'),
'id' => 'acmephoto-sidebar-left',
'description' => __('Displays items on left sidebar.', 'acmephoto'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => __('Footer Column One', 'acmephoto'),
'id' => 'footer-top-col-one',
'description' => __('Displays items on footer section.', 'acmephoto'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => __('Footer Column Two', 'acmephoto'),
'id' => 'footer-top-col-two',
'description' => __('Displays items on footer section.', 'acmephoto'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => __('Footer Column Three', 'acmephoto'),
'id' => 'footer-top-col-three',
'description' => __('Displays items on footer section.', 'acmephoto'),
'before_widget' => '',
'before_title' => '',
));
}
endif;
add_action('widgets_init', 'acmephoto_widget_init');