Astra_Update_Footer_Builder::get_examples()

Get examples.


Description


Return

(array)


Source

File: inc/abilities/customizer/footer/class-astra-update-footer-builder.php

	public function get_examples() {
		return array(
			// Basic adding.
			'add copyright to primary footer column 1',
			'add menu to primary footer column 2',
			'add social-icons-1 to above footer column 1',
			'add widget-1 to primary footer column 3',
			'add html-1 to below footer column 1',
			'add button-1 to primary footer column 4',
			'add widget-2 to above footer column 2',

			// Moving components.
			'move copyright from primary to below footer',
			'move menu to above footer column 1',
			'move social-icons-1 from above to primary footer',
			'move widget-1 to below footer column 1',

			// Specific column placements.
			'place copyright in primary_1',
			'place menu in primary_2',
			'place social-icons-1 in above_3',
			'place widget-1 in primary_4',
			'place html-1 in below_1',

			// Column configuration.
			'set primary footer to 3 columns',
			'set above footer to 4 columns',
			'set below footer to 1 column',
			'configure footer with 4 columns',

			// Layout width.
			'set primary footer to full width',
			'set above footer to content width',
			'make footer full width',
			'set below footer layout to content',

			// Multiple components.
			'add copyright and menu to primary footer',
			'add widget-1 and social-icons-1 to footer',
			'place copyright in column 1 and menu in column 2',

			// Complex operations.
			'move copyright to below footer and add menu to primary footer',
			'add copyright to primary_1, menu to primary_2, and social-icons-1 to primary_3',
			'configure 3-column footer with copyright left, menu center, social right',

			// Removing components.
			'remove copyright from footer',
			'remove menu from primary footer',
			'clear above footer',

			// Mobile configurations.
			'add copyright to mobile footer column 1',
			'configure mobile footer with menu in column 1',
			'add social-icons-1 to mobile footer column 2',

			// Multi-section.
			'add widget-1 to above footer and copyright to below footer',
			'place menu in primary and social in above footer',
			'configure footer with components in above, primary, and below sections',

			// Combined operations.
			'set footer to 4 columns and add copyright, menu, social-icons-1, widget-1',
			'configure full-width footer with 3 columns',
			'reorganize footer with copyright center and menu left',
		);
	}

User Contributed Notes

You must log in before being able to contribute a note or feedback.