2012-06-06 36 views
0

如何連接jQuery中的WordPress,連接的腳本和管理員面板,並在頁面上WordPress php wp_deregister_script '的jquery'); wp_register_script('jquery',(「http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js」), false); wp_enqueue_script('jquery');如何連接jQuery中的WordPress,連接的腳本和管理員面板,並在頁面上WordPress

function admintuts_scripts_with_jquery1(){ 
wp_deregister_script('jquery'); 
wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"), 
    false); 
wp_enqueue_script('jquery'); 
} 
add_action('admin_enqueue_scripts', 'admintuts_scripts_with_jquery1'); 
add_action('admin_enqueue_scripts', wp_enqueue_script ("JQuery")); 


function admintuts_scripts_with_jquery(){ 
wp_register_script('vote', plugins_url('/js/vote.js', __FILE__), array('jquery')); 
wp_register_script('vote', get_template_directory_uri() . '/js/vote.js', array('jquery')); 
wp_enqueue_script('vote'); 
} 
add_action('admin_enqueue_scripts', 'admintuts_scripts_with_jquery'); 

function wptuts_scripts_with_jquery(){ 
wp_register_script('formtest', plugins_url('/www/js/formtest.js', __FILE__), array('jquery')); 
    wp_register_script('formtest', get_template_directory_uri() . '/www/js/formtest.js', array('jquery')); 
wp_enqueue_script('formtest'); 
} 
add_action('wp_enqueue_scripts', 'wptuts_scripts_with_jquery'); 

/* echo " 
<script type=\"text/javascript\" src=\"../wp-content/plugins/votefe/js/jquery.js\"></script>"; */ 

如果誰這將是有趣的,這裏是我如何解決的問題

PHP

function wptuts_scripts_with_jquery(){ 
    wp_deregister_script('jquery'); 
    wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"), false); 
    wp_enqueue_script('jquery'); 

    wp_register_script('formtest', plugins_url('/www/js/formtest.js', __FILE__), array('jquery')); 
    wp_register_script('formtest', get_template_directory_uri() . '/www/js/formtest.js', array('jquery')); 
    wp_enqueue_script('formtest'); 
} 
add_action('wp_enqueue_scripts', 'wptuts_scripts_with_jquery'); 


function votefe_load_style_css() 
{ 
    /*jquery for admin panel*/ 
    wp_deregister_script('jquery'); 
    wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"), false); 
    wp_enqueue_script('jquery'); 
    if to whom it will be interesting, here is how I solved a problem 


    /*js-script for admin panel*/ 
    wp_register_script('vote', plugins_url('/js/vote.js', __FILE__), array('jquery'));  
    wp_register_script('vote', get_template_directory_uri() . '/js/vote.js', array('jquery'));  
    wp_enqueue_script('vote'); 

    /*css-style for admin panel*/ 
    wp_register_style('styleforvote', plugins_url('/css/styleforvote.css', __FILE__), array(), 'all'); 
    wp_register_style('styleforvote', get_template_directory_uri() . '/css/styleforvote.css', array(), 'all'); 
    wp_enqueue_style('styleforvote'); 
} 
add_action('admin_enqueue_scripts', 'votefe_load_style_css'); 

回答

2

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js' type='text/javascript'> 

頭之前沒有?我總是使用這個

+0

非常感謝,而不是從哪裏拿,以及如何扔在管理面板 – user1428014

+0

它是一個插件,它是可取的,它將穿過功能 – user1428014

+0

如果取消註釋最後一行它並將加載到標題中 – user1428014

相關問題