Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save erenkeskin/316c7c74623c458df3338bcb7def4d88 to your computer and use it in GitHub Desktop.
Save erenkeskin/316c7c74623c458df3338bcb7def4d88 to your computer and use it in GitHub Desktop.
<?php
// Javascript'leri Footer'a taşıma Kodu
function footera_tasi() {
// Tanımlı dosyaları tanımsız hale getiriyoruz.
wp_deregister_script( 'jquery' );
wp_deregister_script( 'jquery-migrate' );
// Dosyaları kodlarımız arasında kaldırıyoruz.
wp_dequeue_script( 'jquery' );
wp_dequeue_script( 'jquery-migrate' );
// Kendi dosyalarımızı tanımlıyoruz.
wp_register_script( 'jquery', get_stylesheet_directory_uri() . '/js/jquery.js', '', '', true );
wp_register_script( 'jquery-migrate', get_stylesheet_directory_uri() . '/js/jquery-migrate.js', '', '', true );
// Dosyaları kodlarımız arasına ekliyoruz.
wp_enqueue_script( 'jquery' );
wp_enqueue_script( 'jquery-migrate' );
}
add_action('wp_enqueue_scripts', 'footera_tasi', PHP_INT_MAX);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment