'default',
'name' => __( 'SideBar - Home', 'ADA' ),
'description' => __( 'Site Homepage', 'ADA' )
)
);
register_sidebar(
array(
'id' => 'paginas',
'name' => __( 'SideBar - Pages', 'ADA' ),
'description' => __( 'Itens to show in Pages', 'ADA' )
)
);
register_sidebar(
array(
'id' => 'postagens',
'name' => __( 'SideBar - Posts', 'ADA' ),
'description' => __( 'Itens to show in Posts', 'ADA' )
)
);
register_sidebar(
array(
'id' => 'categoria',
'name' => __( 'SideBar - Categories', 'ADA' ),
'description' => __( 'Itens to show in Categories Listings', 'ADA' )
)
);
register_sidebar(
array(
'id' => 'pesquisa',
'name' => __( 'SideBar - Search Results', 'ADA' ),
'description' => __( 'Search Results, 404 etc', 'ADA' )
)
);
register_sidebar(
array(
'id' => 'box-e',
'name' => __( 'Footer - Left Box', 'ADA' ),
'description' => __( 'The left area in Footer', 'ADA' )
)
);
register_sidebar(
array(
'id' => 'box-c',
'name' => __( 'Footer - Center Box', 'ADA' ),
'description' => __( 'The center area in Footer', 'ADA' )
)
);
register_sidebar(
array(
'id' => 'box-d',
'name' => __( 'Footer - Right Box', 'ADA' ),
'description' => __( 'The right area in Footer', 'ADA' )
)
);
}
//Menus//
add_theme_support('menus');
register_nav_menus( array(
'menu-topo' => __('Navigation Menu
Add Pages, Categories, etc. You can use nested itens as well.', 'ADA') ,
'menu-intro' => __('Intro Menu
Add up to 6 itens like special pages, links etc . Nested itens are not supported!', 'ADA') ,
'menu-rodape' => __('Footer Menu
Add Privacy Policy, Legal Notes, Terms of Service etc', 'ADA')
) );
//Header//
add_custom_image_header( '', 'ADA_admin_header_style' );
define('NO_HEADER_TEXT', true );
define('HEADER_TEXTCOLOR', '');
define( 'HEADER_IMAGE', '%s/img/logo.png' );
define( 'HEADER_IMAGE_WIDTH', apply_filters( 'ADA_admin_header_image_width', 500 ) );
define( 'HEADER_IMAGE_HEIGHT', apply_filters( 'ADA_admin_header_image_height', 150 ) );
if ( ! function_exists( 'ADA_admin_header_style' ) ) :
function ADA_admin_header_style() { ?>