dynamic_css = $dynamic_css; add_action( 'wp_head', array( $this, 'add_inline_css' ), 999 ); } /** * Add Inline CSS. * We need this on because it has to be loaded after all other Avada CSS * and W3TC can combine it correctly. * * @access public * @return void */ public function add_inline_css() { $dynamic_css = $this->dynamic_css; echo ''; } } /* Omit closing PHP tag to avoid "Headers already sent" issues. */