1、 WordPress 无插件实现内容目录索引前面一篇文章“4 款 WordPress 文章内容索引列表插件“我们可以使用插件来实现目录索引的效果。鉴于 WP 程序的负载很大,能少使用插件就少使用。那有没有不使用插件可以实现这样的索引功能能?于是我找着找着,终于找到一个博主分享的这样的无插件实现内容索引效果。第一步,把下面的代码放到模板所在的 function.php 文件里function article_index($content) $matches = array();$ul_li = ;$r = “/h3$title.“.$title.“/a/lin“;$content = “ndiv
2、 id=“article-index“strong 文章目录/strongul id=“index-ul“n“ . $ul_li . “/ul/divn“ . $content;return $content;add_filter( “the_content“, “article_index“ );第二步,在我们内容编辑的时候,切换到 HTML 编辑器,然后在需要索引的标题用 H3 标注,具体的用 H 几要和上面的定义 FUNCTION 对应,默认的是 H3。然后在显示的时候会自动抓取。为了达到美化的效果,需要用到 CSS,具体的还是要根据需求调整。#article-index -moz-bo
3、rder-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;在后来我又发现还有一款 jQuery Table of Contents 插件也是可以使用的。建议还是少用插件。