在我的管理頁面我可以將默認模板頁面更改爲另一個自定義模板。 我需要的是:如何添加標題屬性當頁面有一個特定的模板
在我的導航標題菜單我有很多的鏈接,我必須設置a
標籤的title屬性時a
標籤指向將與我的自定義模板,而不是使用默認渲染頁面一。例如:
<li><a hreh=".." title="myCustom">link1</a></li> //this title will be redirected with my custom template
<li><a hreh="..">link2</a></li> //this title will be redirected with default template
<li><a hreh="..">link3</a></li> //this title will be redirected with default template
<li><a hreh=".." title="myCustom">link4</a></li> //this title will be redirected with my custom template
如果我打開header.php
確保鏈接的創建人:
<?php $params = array(
'theme_location' =>'primary',
'limit' => 5,
'format' => 'custom',
'link_before' => '<span>',
'link_after' => '</span>');
wp_nav_menu($params);
?>
我怎麼能檢查是否鏈接默認模板或地雷一個繪製?
不,你不清楚 – Reigel
我試圖更清楚編輯帖子..只是片刻:) – JackTurky