人妻系列无码专区av在线,国内精品久久久久久婷婷,久草视频在线播放,精品国产线拍大陆久久尤物

當(dāng)前位置:首頁 > 編程技術(shù) > 正文

wp如何自動(dòng)生成目錄

wp如何自動(dòng)生成目錄

1. 使用插件插件推薦:Table of Contents by Jino Tu 安裝并激活該插件。 在文章編輯器中,勾選“自動(dòng)插入目錄”選項(xiàng)。 2. 使用短代碼```...

1. 使用插件

插件推薦:Table of Contents by Jino Tu

安裝并激活該插件。

在文章編輯器中,勾選“自動(dòng)插入目錄”選項(xiàng)。

2. 使用短代碼

```html

$heading = '目錄';

$tag = 'h2'; // 你可以根據(jù)需要修改為'h1', 'h3'等

$shortcode = '[toc ' . $heading . ' ' . $tag . ']';

echo do_shortcode($shortcode);

?>

```

3. 使用函數(shù)

```php

function custom_toc() {

echo '

目錄

    ';

    $content = get_the_content();

    $content = preg_replace('/]>(.?)/i', '

  • $1
  • ', $content);

    $content = preg_replace('/]>(.?)/i', '
  • $1
  • ', $content);

    $content = preg_replace('/]>(.?)/i', '

  • $1
  • ', $content);

    echo $content;

    echo '

';