Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save erenkeskin/53599dc86815b427e17290af83bd0cc3 to your computer and use it in GitHub Desktop.
Save erenkeskin/53599dc86815b427e17290af83bd0cc3 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' );
// Dosyaları kodlarımız arasında kaldırıyoruz.
wp_dequeue_script( 'jquery' );
// Kendi dosyalarımızı tanımlıyoruz.
wp_register_script( 'jquery', get_stylesheet_directory_uri() . '/js/jquery.js', '', '', true );
// Sadece yazı içerisinde jquery dosyamızı kodlarımız arasına ekliyoruz.
if(is_single()){
wp_enqueue_script( 'jquery' );
}
}
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