0
如何在我的wordpress網站的一個網站上插入javascript?我讀過,它可以使用功能add_action('wp_head', 'function');
但不知何故,這不適合我。如何在wordpress文檔中實現javascript文件?
感謝您的幫助! phpheini
如何在我的wordpress網站的一個網站上插入javascript?我讀過,它可以使用功能add_action('wp_head', 'function');
但不知何故,這不適合我。如何在wordpress文檔中實現javascript文件?
感謝您的幫助! phpheini
在您的functions.php文件(在您的主題)中創建一個函數,然後添加。例如,
function my_custom_javascript{
print("<script language = 'javascript'>alert('trying my javascript alerts');</script>");
)
add_action('wp_head', 'my_custom_javascript');
非常好!如果你希望它只是在一個文件中,你會怎麼做? – phpheini 2011-04-10 12:38:04