關(guān)于導(dǎo)航欄添加自定義鏈接的方法,,可以用插件,在3.0之后有自定義菜單可用,,但悲催的是很多人主題不支持這個功能,,而又不想用插件,那怎么辦呢,?這個該怎么實現(xiàn)呢,?其實很簡單,只需要添加一句函數(shù)就可以實現(xiàn)了。
首先找到你當(dāng)前主題里的頭文件header.php,(一般是在header.php的也有些特殊點的主題可能在其他文件,,那就找到你導(dǎo)航欄的 那個文件),。好了,找到header.php后,,就找到輸出導(dǎo)航欄的位置,,我們可以ctrl+F搜索“wp_list_pages”,如果你的導(dǎo)航欄顯示 的是分類那就搜索這個“wp_list_categories”函數(shù),,然后鎖定這一段代碼: <!–This controls pages navigation bar–> <div id=”pages”> <ul> <li><a href=”<?php bloginfo(‘url’); ?>” title=”回到首頁”>首頁</a></li> <?php wp_list_pages(‘depth=1&title_li=’); ?> </ul> </div> <!–End category navigation–> 接著就在你想添加鏈接菜單的地方添加下面語句: <li><a target=“_blank” href=http://www.>經(jīng)典電影</a></li> 網(wǎng)址和標(biāo)題就根據(jù)自己的需要修改成自己的,。 <!–This controls pages navigation bar–> <div id=”pages”> <ul> <li class=”page_item”><a href=”<?php bloginfo(‘url’); ?>” class=”title” title=”回到首頁”>首頁</a></li> <li><a target=“_blank” href=http://www.>經(jīng)典電影</a></li> <?php wp_list_pages(‘depth=1&title_li=’); ?> </ul> </div> <p><!–End category navigation–></p> 如果你想添加多個自定義菜單的話,就添加多個相應(yīng)的語句,,如果想在當(dāng)前窗口打開,就省去 target=“_blank”,,如果你不想這個鏈接被搜索引擎追蹤,,可以給它加入rel=”nofollow”即可,這些功能即使是3.0的自定義菜單 依然沒有的,,所以還是代碼比較給力?。?/p> |
|