Astra_Update_Header_Builder::get_examples()
Get examples.
Description
Return
(array)
Source
File: inc/abilities/customizer/header/class-astra-update-header-builder.php
public function get_examples() {
return array(
// Basic adding.
'add menu-1 to primary header right',
'add social-icons-1 to above header right',
'add search to primary header left',
'add button-1 to primary header right',
'add logo to primary header left',
'add widget-1 to below header center',
'add html-1 to above header center',
'add account to primary header right',
'add woo-cart to primary header right',
// Moving components.
'move menu-1 to above header center',
'move logo to primary header center',
'move search from primary to below header',
'move social-icons-1 to below header right',
'move button-1 to above header right',
'move primary menu to above header center and add search in below header right',
// Specific zone placements.
'place menu-1 in primary_right',
'place logo in primary_left',
'place search in primary_left_center',
'place social-icons-1 in above_right',
'place button-1 in primary_right_center',
'place widget-1 in below_center',
// Mobile configurations.
'add mobile-trigger to primary header right for mobile',
'add mobile-menu to mobile popup',
'place mobile-menu in popup_content',
'add social-icons-1 to mobile popup',
'configure mobile header with logo left and trigger right',
// Multiple components.
'add menu-1 and search to primary header right',
'add button-1 and social-icons-1 to primary header',
'place logo in left and menu-1 in right of primary header',
// Removing components.
'remove menu-1 from primary header',
'remove search from header',
'clear above header',
// Complex layouts.
'add logo to primary left, menu-1 to primary right',
'move menu-1 to center and add search to left',
'reorganize header with logo center, menu left, search right',
'add html-1 to above center and widget-1 to below left',
// Zone-specific.
'add button-2 to primary_right_center',
'place html-2 in above_left_center',
'move widget-2 to below_center',
// Multi-section.
'add social-icons-1 to above header and menu-2 to below header',
'place copyright in above and menu in primary',
'configure header with components in above, primary, and below',
);
}
Expand full source code Collapse full source code View on Trac