我正在開發一個WordPress插件。我想在body標籤和head標籤之前添加一些內容。如何使用wordpress掛鉤或過濾器在body標籤之前添加動態代碼
作爲一個例子:
</head>
some code add here dynamically using hook or plugin or any other way to add code here (html content dynamically)
<body>
我正在開發一個WordPress插件。我想在body標籤和head標籤之前添加一些內容。如何使用wordpress掛鉤或過濾器在body標籤之前添加動態代碼
作爲一個例子:
</head>
some code add here dynamically using hook or plugin or any other way to add code here (html content dynamically)
<body>
您可以使用此 -
add_action('wp_head', array($this, 'your_function'), 1);
function your_function(){
echo "your tag here";
}
這在頭部我想在頭部之後添加身體前 –
嘗試使用javascript insertAfter函數。 –
的HTML標準不允許的東西是< /頭>和<體>之間,我想。
除此之外,您認爲應該放在那裏?你在查看整個文檔時如何打電話給那個區域?
我真的不認爲你可以在'
'和''之間掛鉤。在這裏尋找所有相關的鉤子:https://codex.wordpress.org/Plugin_API/Action_Reference/ –@flomei是正確的 - 在這裏看到更多。 http://stackoverflow.com/questions/16348140/script-element-between-head-and-body-html5 – McNab