__('Primary Menu', 'acmetech')
));
}
endif;
add_action('after_setup_theme', 'acmetech_setup');
function acmetech_widgets_init(){
register_sidebar(array(
'name' => 'Sidebar',
'id' => 'sidebar-1',
'description' => 'Main sidebar widgets',
'before_widget' => '\n",
'before_title' => '
\n"
));
register_sidebar(array(
'name' => 'Footer Column 1',
'id' => 'footer-widgets-1',
'description' => 'Footer Widgets',
'before_widget' => '\n",
'before_title' => '\n"
));
register_sidebar(array(
'name' => 'Footer Column 2',
'id' => 'footer-widgets-2',
'description' => 'Footer Widgets',
'before_widget' => '\n",
'before_title' => '\n"
));
register_sidebar(array(
'name' => 'Footer Column 1',
'id' => 'footer-widgets-3',
'description' => 'Footer Widgets',
'before_widget' => '\n",
'before_title' => '\n"
));
}
add_action( 'init', 'acmetech_widgets_init' );