WordPress非插件添加文章目录功能

梅花真洁白啊!像冬天里的雪花;梅花真美丽啊!像翩翩起舞的天鹅;梅花真坚强啊!像个英勇的战士。梅花坚强不屈的精神一直激励着我前进。

给文章添加文章目录功能,不仅是文章条理更清楚,还有利于SEO,下面将介绍 露兜 老大的使用代码来实现文章目录的方法,方便喜欢折腾代码的朋友,如果你不想折腾代码,你可以试试下面的WordPress文章目录插件:TOC 和 Content Index for WordPress。

用代码实现文章目录

1.将下面的代码添加到主题的 functions.php 文件的 最后一个 ?> 前面:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
function article_index($content) {
    /**
     * 名称:文章目录插件
     * 作者:露兜
     * 博客:http://www.ludou.org/
     * 最后修改:2011年2月10日
     */

    $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], '<h3 id="title-'.$num.'">'.$title.'</h3>', $content);
            $ul_li .= '<li><a rel="nofollow noopener noreferrer" 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" );

function article_index($content) { /** * 名称:文章目录插件 * 作者:露兜 * 博客:http://www.ludou.org/ * 最后修改:2011年2月10日 */ $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], '<h3 id="title-'.$num.'">'.$title.'</h3>', $content); $ul_li .= '<li><a rel="nofollow noopener noreferrer" 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" );

使用说明

在编辑文章的时候,在可视化模式下,选中文字,设置为标题3(H3),或者切换到HTML模式,将需要添加到目录中的标题用<h3>和</h3>括起来就可以了,如<h3>我是索引标题</h3>。当然你也可以用其他标签,如<h2>,<p>等,将以上代码第12行中的h3改成你自己的标签名称就可以了。

CSS样式参考

为了实现前台的显示效果,你可以参考下面的css

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#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;
}

#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; }

以上代码的功能比较单一,只有单级目录,不能实现多层级的复杂而完善的索引目录功能,如果你需要这些功能,那你就要借助文章目录插件:TOC 和 Content Index for WordPress。

到此这篇关于WordPress非插件添加文章目录功能就介绍到这了。态度决定一切,细节铸就成功。更多相关WordPress非插件添加文章目录功能内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!

您可能有感兴趣的文章
WordPress站点Gravatar头像前后台不显示的如何解决办法

WordPress主题需要支持https吗?WordPress站点如何如何实现https?

WordPress站点的页面/标签/分类URL地址如何添加.html?

WordPress站点更换了域名后数据库应该如何操作替换新旧域名?

WordPress安装在主机空间的什么目录里面?根目录在哪里?