Astra_Meta_Boxes::get_content_layout_options()
Returns an array of content layout options for the current post type.
Description
Return
(array) The array of content layout options.
Source
File: inc/metabox/class-astra-meta-boxes.php
public function get_content_layout_options() {
return array(
'default' => __( 'Customizer Setting', 'astra' ),
'boxed-container' => __( 'Boxed', 'astra' ),
'content-boxed-container' => __( 'Content Boxed', 'astra' ),
'plain-container' => __( 'Full Width / Contained', 'astra' ),
'page-builder' => __( 'Full Width / Stretched', 'astra' ),
);
}
Expand full source code Collapse full source code View on Trac