How to disable font-awesome (cdn) in WP

Guys, please tell me I can not on the site (CMS: Wordpress) disable the download of fontawasome by link: netdna.bootstrapcdn.com

Link rel='stylesheet' id='fontawesome_stylesheet-css' href='//netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.css' type='text/css' media='all'

Can you tell me how to do this? Thank you in advance!

Author: Denis Bolotnikov, 2019-11-27

1 answers

I found the answer to my question in the article: https://wp-kama.ru/question/ne-poluchaetsya-otklyuchit-stili-plagina

add_action( 'wp_enqueue_scripts', function () {
    wp_dequeue_style( 'fontawesome_stylesheet' );
} );

The name is taken from Html, we look at the link ID, while taking away the "-ss" and that's it! Maybe someone will need it!

 0
Author: Denis Bolotnikov, 2019-11-27 18:36:04