2
我開始爲學校製作一個網站,但我不得不使用WordPress。從來沒有處理它。 所以,我只是想做一個簡單的重定向頁面,因爲我知道Javascript,我試圖使用,而不是PHP。 我看到很多人曾與JS煩惱WP和搜索我見過this page.我如何在WordPress中實現JavaScript?
meta標籤和樣式錶鏈接
之間
這是什麼意思?我沒有使用腳本標記在單個頁面內製作簡單函數的麻煩,但是當功能變得更加複雜時,他們在Google Chrome的解釋器上工作,但不在我的WordPress頁面中工作。 我嘗試在我的主題的「header.php」中寫入函數,由腳本標記封閉,但仍然無法使用。
現在的功能是:
window.onload = verifyLogin(); /*This is just in the redirect page's script.*/
function verifyLogin(){
if(logged()){
window.open("link to add product");
}
else{
window.open("link to log in the website");
}
}
function logged(){
return 1;
}
/*Instead of the logged() functions i'll call a php function that verifies
if the user who visits the redirect page is logged in*/
的[我如何添加一個簡單的jQuery腳本到WordPress?](HTTP可能重複:// stackoverflow.com/questions/11159860/how-do-i-add-a-simple-jquery-script-to-wordpress) –
您需要註冊腳本:https://developer.wordpress.org/reference/functions/ wp_register_script /並將其排入隊列https://developer.wordpress.org/reference/functions/wp_enqueue_script/ –