Skip to content

Instantly share code, notes, and snippets.

@ofyalcin
Created December 26, 2016 20:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ofyalcin/279534ce63e4040a6d5c4af611ccfd0a to your computer and use it in GitHub Desktop.
Save ofyalcin/279534ce63e4040a6d5c4af611ccfd0a to your computer and use it in GitHub Desktop.
Wordpress javascript dosyalarını footera taşıma kodu. Detaylı bilgi için https://blogkurdu.net/javascript-dosyalarini-footera-tasimak-wordpress/ adresini ziyaret edin.
// JS dosyalarını footera taşıma kodu başlangıcı.
function remove_head_scripts() {
remove_action('wp_head', 'wp_print_scripts');
remove_action('wp_head', 'wp_print_head_scripts', 9);
remove_action('wp_head', 'wp_enqueue_scripts', 1);
add_action('wp_footer', 'wp_print_scripts', 5);
add_action('wp_footer', 'wp_enqueue_scripts', 5);
add_action('wp_footer', 'wp_print_head_scripts', 5); }
add_action( 'wp_enqueue_scripts', 'remove_head_scripts' );
// JS dosyalarını footera taşıma kodu sonu.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment