mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-28 11:22:21 +08:00
7 lines
271 B
Text
7 lines
271 B
Text
function wt_move_gdpr_script_to_footer() {
|
|
if (class_exists('Cookie_Law_Info')) {
|
|
wp_dequeue_script('cookie-law-info');
|
|
wp_enqueue_script('cookie-law-info', '', array(), false, true);
|
|
}
|
|
}
|
|
add_action( 'admin_enqueue_scripts', 'wt_move_gdpr_script_to_footer', 999 );
|