Code-Snippets-Functions/Execute a function on a child site/Elementor/elementor-disable-font-awesome.txt

5 lines
194 B
Text

add_action( 'elementor/frontend/after_register_styles',function() {
foreach( [ 'solid', 'regular', 'brands' ] as $style ) {
wp_deregister_style( 'elementor-icons-fa-' . $style );
}
}, 20 );