This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Astra_Update_Footer_Builder::get_default_desktop_structure()

Get default desktop footer structure with all columns initialized.


Description


Return

(array) Default desktop structure with all columns as empty arrays.


Source

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

	private function get_default_desktop_structure() {
		return array(
			'above'   => array(
				'above_1' => array(),
				'above_2' => array(),
				'above_3' => array(),
				'above_4' => array(),
				'above_5' => array(),
				'above_6' => array(),
			),
			'primary' => array(
				'primary_1' => array(),
				'primary_2' => array(),
				'primary_3' => array(),
				'primary_4' => array(),
				'primary_5' => array(),
				'primary_6' => array(),
			),
			'below'   => array(
				'below_1' => array(),
				'below_2' => array(),
				'below_3' => array(),
				'below_4' => array(),
				'below_5' => array(),
				'below_6' => array(),
			),
		);
	}


User Contributed Notes

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