1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
<?php /* Plugin Name: deregister dashicons Plugin URI: Description: Remove dashicons.min.css from frontend Author: Author URI: Donate link: Tags: Requires at least: 4.1 Tested up to: 4.9.5 Version: 1.0.0 License: License URI: How to remove dashicons.min.css from frontend? https://wordpress.stackexchange.com/questions/161476/how-to-remove-dashicons-min-css-from-frontend/161482 */ namespace deregister_dashicons; if (!is_admin()) { add_action('plugins_loaded', 'deregister_dashicons\wp_print_scripts'); } function wp_print_scripts () { if (!is_user_logged_in()) { add_action('wp_print_styles', 'deregister_dashicons\deregister_styles', 100); } } function deregister_styles() { wp_deregister_style('dashicons'); } |