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_mobile_structure()

Get default mobile footer structure with all columns initialized.


Description


Return

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


Source

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

	private function get_default_mobile_structure() {
		return array(
			'above'   => array(
				'above_1' => array(),
				'above_2' => array(),
			),
			'primary' => array(
				'primary_1' => array(),
				'primary_2' => array(),
			),
			'below'   => array(
				'below_1' => array(),
				'below_2' => array(),
			),
		);
	}


User Contributed Notes

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