Astra_Builder::__construct()
Constructor
Description
Source
File: classes/class-astra-builder.php
public function __construct() {
add_filter(
'astra_footer_row_layout',
function( $layout ) {
// Modify Layouts here.
return $layout;
}
);
add_filter( 'astra_header_desktop_items', array( $this, 'update_header_builder_desktop_items' ) );
add_filter( 'astra_header_mobile_items', array( $this, 'update_header_builder_mobile_items' ) );
add_filter( 'astra_footer_desktop_items', array( $this, 'update_footer_builder_desktop_items' ) );
add_action( 'astra_render_header_components', array( $this, 'render_header_components' ) );
add_action( 'astra_render_footer_components', array( $this, 'render_footer_dynamic_components' ) );
}
Expand full source code Collapse full source code View on Trac