WordPress無插件實現(xiàn)內(nèi)容目錄索引
來源:易賢網(wǎng) 閱讀:845 次 日期:2014-09-02 17:21:59
溫馨提示:易賢網(wǎng)小編為您整理了“WordPress無插件實現(xiàn)內(nèi)容目錄索引”,方便廣大網(wǎng)友查閱!

前面一篇文章"4款WordPress文章內(nèi)容索引列表插件"我們可以使用插件來實現(xiàn)目錄索引的效果。鑒于WP程序的負載很大,能少使用插件就少使用。那有沒有不使用插件可以實現(xiàn)這樣的索引功能能?于是我找著找著,終于找到一個博主分享的這樣的無插件實現(xiàn)內(nèi)容索引效果。

第一步,把下面的代碼放到模板所在的function.php文件里

function article_index($content) {

$matches = array();

$ul_li = '';

$r = "/<h3>([^<]+)</h3>/im";

if(preg_match_all($r, $content, $matches)) {

foreach($matches[1] as $num => $title) {

$content = str_replace($matches[0][$num], '<h4 id="title-'.$num.'">'.$title.'</h4>', $content);

$ul_li .= '<li><a href="#title-'.$num.'" title="'.$title.'">'.$title."</a></li>n";

}

$content = "n<div id="article-index">

<strong>文章目錄</strong>

<ul id="index-ul">n" . $ul_li . "</ul>

</div>n" . $content;

}

return $content;

}

add_filter( "the_content", "article_index" );

第二步,在我們內(nèi)容編輯的時候,切換到HTML編輯器,然后在需要索引的標題用H3標注,具體的用H幾要和上面的定義FUNCTION對應,默認的是H3。然后在顯示的時候會自動抓取。

為了達到美化的效果,需要用到CSS,具體的還是要根據(jù)需求調(diào)整。

#article-index {

-moz-border-radius: 6px 6px 6px 6px;

border: 1px solid #DEDFE1;

float: right;

margin: 0 0 15px 15px;

padding: 0 6px;

width: 200px;

line-height: 23px;

}

#article-index strong {

border-bottom: 1px dashed #DDDDDD;

display: block;

line-height: 30px;

padding: 0 4px;

}

#index-ul {

margin: 0;

padding-bottom: 10px;

}

#index-ul li {

background: none repeat scroll 0 0 transparent;

list-style-type: disc;

padding: 0;

margin-left: 20px;

}

在后來我又發(fā)現(xiàn)還有一款jQuery Table of Contents插件也是可以使用的。建議還是少用插件。

更多信息請查看IT技術(shù)專欄

更多信息請查看網(wǎng)絡編程
易賢網(wǎng)手機網(wǎng)站地址:WordPress無插件實現(xiàn)內(nèi)容目錄索引

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)