wordpress主題header.php檔案為什麼要新增wp_head()?
阿新 • • 發佈:2018-12-11
--廣告位佔位--
贊助商連結
wp_head函式對於要使用外掛的主題來說比較重要,一般如果外掛需要向主題頭部header標籤內加入css檔案和js檔案,都是通過wp_head()函式輸出的。在header.php檔案的header標籤結束標籤</header>前面新增:
<head> ..... <?php wp_head(); ?> </head>
附官方原文解析:
<?php ... /* Always have wp_head() just before the closing </head> * tag of your theme, or you will break many plugins, which * generally use this hook to add elements to <head> such * as styles, scripts, and meta tags. */ wp_head(); ?> </head>