mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
5 lines
194 B
Text
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 );
|