mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
7 lines
195 B
Text
7 lines
195 B
Text
function wpdocs_dequeue_dashicon() {
|
|
if (current_user_can( 'update_core' )) {
|
|
return;
|
|
}
|
|
wp_deregister_style('dashicons');
|
|
}
|
|
add_action( 'wp_enqueue_scripts', 'wpdocs_dequeue_dashicon' );
|