add_filters(); } public function add_filters() { add_filter( 'tribe_customizer_print_styles_action', [ $this, 'print_inline_styles_in_footer' ] ); } /** * Changes the action the Customizer should use to try and print inline styles to print the inline * styles in the footer. * * @since 5.7.0 * * @return string The action the Customizer should use to print inline styles. */ public function print_inline_styles_in_footer() { return 'wp_print_footer_scripts'; } }