Astra_Beaver_Themer::__construct()
Constructor
Description
Source
File: inc/compatibility/class-astra-beaver-themer.php
public function __construct() {
add_action( 'after_setup_theme', array( $this, 'header_footer_support' ) );
add_action( 'wp', array( $this, 'theme_header_footer_render' ) );
add_filter( 'fl_theme_builder_part_hooks', array( $this, 'register_part_hooks' ) );
add_filter( 'post_class', array( $this, 'render_post_class' ), 99 );
add_action( 'fl_theme_builder_before_render_content', array( $this, 'builder_before_render_content' ), 10, 1 );
add_action( 'fl_theme_builder_after_render_content', array( $this, 'builder_after_render_content' ), 10, 1 );
}
Expand full source code Collapse full source code View on Trac