Skip to content

Instantly share code, notes, and snippets.

@rickbenetti
Created September 16, 2011 17:59
Show Gist options
  • Save rickbenetti/1222702 to your computer and use it in GitHub Desktop.
Save rickbenetti/1222702 to your computer and use it in GitHub Desktop.
carregar scripts do Tema no rodapé
// 0. Carrega os scripts no wp_head()
function carrega_scripts() {
if(is_home() || !is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', get_bloginfo('template_url') . '/scripts/jquery.js' , false, '1.6.2', true);
wp_enqueue_script('functions', get_bloginfo('template_url') . '/scripts/functions.js', array('jquery'), '1.0', true);
}
if(is_single() || is_page()) {
wp_deregister_script('jquery');
wp_register_script('jquery', get_bloginfo('template_url') . '/scripts/jquery.js' , false, '1.6.2', true);
wp_enqueue_script('functions', get_bloginfo('template_url') . '/scripts/functions.js', array('jquery'), '1.0', true);
}
}
add_action('wp_print_scripts', 'carrega_scripts'); // Adiciona a acao
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment