mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
6 lines
184 B
Text
6 lines
184 B
Text
add_action( 'wp_print_scripts', 'mtk_helper_dequeue_scripts' );
|
|
function mtk_helper_dequeue_scripts() {
|
|
if (is_user_logged_in()) {
|
|
wp_dequeue_script('metorik-js');
|
|
}
|
|
}
|