Title: HTML Page Sitemap (Block and Shortcode)
Author: Angelo Mandato
Published: <strong>6 Tháng 9, 2009</strong>
Last modified: 24 Tháng 5, 2026

---

Tìm kiếm plugin

![](https://ps.w.org/html-sitemap/assets/banner-772x250.png?rev=3458819)

![](https://ps.w.org/html-sitemap/assets/icon.svg?rev=3458819)

# HTML Page Sitemap (Block and Shortcode)

 Bởi [Angelo Mandato](https://profiles.wordpress.org/amandato/)

[Tải về](https://downloads.wordpress.org/plugin/html-sitemap.2.1.3.zip)

[Xem trước trực tiếp](https://vi.wordpress.org/plugins/html-sitemap/?preview=1)

 * [Chi tiết](https://vi.wordpress.org/plugins/html-sitemap/#description)
 * [Đánh giá](https://vi.wordpress.org/plugins/html-sitemap/#reviews)
 *  [Cài đặt](https://vi.wordpress.org/plugins/html-sitemap/#installation)
 * [Nhà phát triển](https://vi.wordpress.org/plugins/html-sitemap/#developers)

 [Hỗ trợ](https://wordpress.org/support/plugin/html-sitemap/)

## Mô tả

This simple plugin adds an HTML (Not XML) sitemap of your pages (not posts) by using
the shortcode `[html_sitemap]`. This plugin can display a sitemap with specific 
depths, from a specific parent page and include/exclude specific pages by ID. The
sitemap uses the unordered HTML list tags `<ul>` and `<li>`.

New for 2.0 is the **HTML Sitemap Block**, now you can add a HTML Sitemap using 
the WordPress Block Editor.

Attributes include `sort_column`, `sort_order`, `exclude`, `include`, `depth`, `
child_of`, `meta_key`, `meta_value`, `authors`, `number`, `offset`, `post_type`,
and `post_status` parameters from the [`wp_list_pages`](https://codex.wordpress.org/Function_Reference/wp_list_pages)
function. In addition you can also set `class`, `id`, and `ordered_list_type` to
further customize the html page sitemap.

**This plugin is perfect for those who use WordPress as a CMS.**

### Block / Shortcode Tag Attribute Options

The following wp_list_pages tag attribute options are supported:

 * `authors` — Comma-separated list of author IDs. Default empty (all authors).
 * `child_of` — ID of child page, ‘CURRENT’, or ‘PARENT’. The value ‘CURRENT’ will
   use the current page ID. The value ‘PARENT’ will use the current page parent 
   ID.
 * `depth` — -1 (any depth), 0 (all pages), 1 (top-level pages only), 2 (top-level
   and 2nd level pages only), etc.
 * `date_format` — e.g. ‘l, F j, Y’. See [WordPress Date Format](https://wordpress.org/documentation/article/customize-date-and-time-format/)
 * `exclude` — Comma-separated list of page IDs to exclude.
 * `include` — Comma-separated list of page IDs to include.
 * `item_spacing` — Whether to preserve whitespace within the menu’s HTML. Accepts‘
   preserve’ or ‘discard’.
 * `meta_key` — Limits output to pages having a specific custom field key.
 * `meta_value` — Limits output to pages having a specific custom field value.
 * `number` — Limits the number of links displayed (SQL LIMIT).
 * `offset` — Skips a specific number of pages before displaying the list.
 * `post_type` — Post type to query for. Default ‘page’
 * `post_status` — Comma-separated list or array of post statuses to include. Default‘
   publish’
 * `show_date` — Whether to display the page publish or modified date for each page.
   Accepts ‘modified’ or any other value. An empty value hides the date.
 * `sort_column` — Comma-separated list of column names to sort the pages by. Accepts‘
   post_author’, ‘post_date’, ‘post_title’, ‘post_name’, ‘post_modified’, ‘post_modified_gmt’,‘
   menu_order’, ‘post_parent’, ‘ID’, ‘rand’, or ‘comment_count’. Default ‘menu_order,
   post_title’.
 * `sort_order` — ‘ASC’ or ‘DESC’. Default ‘ASC’.

Please see documentation for the [`wp_list_pages`](https://codex.wordpress.org/Function_Reference/wp_list_pages)
function for reference.

### Demos

 * [Demo of the HTML Sitemap Block](https://playground.wordpress.net/?blueprint-url=https%3A%2F%2Fraw.githubusercontent.com%2Fmandato-wordpress%2Fhtml-sitemap%2Frefs%2Fheads%2Fmain%2F.github%2Fblueprints%2Fblueprint-block.json)
 * [Demo of the HTML Sitemap shortcode](https://playground.wordpress.net/?blueprint-url=https%3A%2F%2Fraw.githubusercontent.com%2Fmandato-wordpress%2Fhtml-sitemap%2Frefs%2Fheads%2Fmain%2F.github%2Fblueprints%2Fblueprint-shortcode.json)

In addition the following tag attributes are available exclusively for this plugin:

 * `class` — Specify class values for the initial HTML Page Sitemap `<ul>` list 
   tag.
 * `id` — Specify ID values for the initial HTML Page Sitemap `<ul>` list tag.
 * `ordered_list_type` — Specify the ordered list type. Accepts ”, ‘1’, ‘A’, ‘a’,‘
   I’, and ‘i’. Default empty value will display an unordered list.

The `ordered_list_type` attribute options in more detail:

 * `ordered_list_type=""` — The list items will be unordered
 * `ordered_list_type="1"` — The list items will be numbered with numbers
 * `ordered_list_type="A"` — The list items will be numbered with uppercase letters
 * `ordered_list_type="a"` — The list items will be numbered with lowercase letters
 * `ordered_list_type="I"` — The list items will be numbered with uppercase roman
   numbers
 * `ordered_list_type="i"` — The list items will be numbered with lowercase roman
   numbers

Note: This plugin only works with Hierarchical Custom Post Types such as `pages`.
This plugin will not work if your post type is not hierarchical. Not setting an 
ordered_list_type will use an unordered list (default).

#### Examples

First example shows how to add a sitemap for the entire site.

    ```
    [html_sitemap]
    ```

Example shortcode will add a sitemap to a page displaying a depth limit of 3 and
exclude page ID 708.

    ```
    [html_sitemap depth=3 exclude=708]
    ```

Example shortcode will add a sitemap to a page displaying only children and grandchildren
of the current page.

    ```
    [html_sitemap depth=2 child_of=CURRENT]
    ```

Example shortcode will add a sitemap to a page displaying children and grandchildren
of the parent page (would include the curent page as well).

    ```
    [html_sitemap depth=2 child_of=PARENT]
    ```

Example shortcode will add a sitemap displaying the page modified date with the 
pages sorted by the menu order number.

    ```
    [html_sitemap show_date=modified sort_column=menu_order]
    ```

Example shortcode excluding multiple pages with ids 708, 1024 and 42.

    ```
    [html_sitemap exclude="708,1024,42"]
    ```

Example shortcode will add a class attribute to the `<ul>` tag.

    ```
    [html_sitemap class="custom-class"]
    ```

Example shortcode will add an id attribute to the `<ul>` tag.

    ```
    [html_sitemap id="custom-element-id"]
    ```

Example shortcode will display an ordered list using lowercase letters with a depth
of 1.

    ```
    [html_sitemap ordered_list_type="a" depth=1]
    ```

Example shortcode with roman numbering in capitalization, with custom field “featured-
list” and custom value “yes”

    ```
    [html_sitemap ordered_list_type="I" meta_key=featured-list meta_value=yes sort_column=post_date]
    ```

For the latest information visit the website.

[http://www.pluginspodcast.com/plugins/html-page-sitemap/](http://www.pluginspodcast.com/plugins/html-page-sitemap/)

### Contributors

[Angelo Mandato](https://angelo.mandato.com), founder of [Painless Analytics](https://www.painlessanalytics.com)
and [FrontPup](https://www.frontpup.com) – Plugin author

## Ảnh màn hình

 * [[
 * HTML Page Sitemap in the Default WordPress theme.
 * [[
 * HTML Sitemap Block found in widgets category.
 * [[
 * HTML Sitemap Block in editor.
 * [[
 * Preview of Sitemap block in page “Level 1” with child_of set to CURRENT.

## Khối

Plugin này cung cấp 1 khối.

 *   HTML Sitemap HTML Sitemap WordPress plugin block.

## Cài đặt

#### Automatic Plugin Installation

Install using the [built-in plugin installer](https://codex.wordpress.org/Administration_Screens#Add_New_Plugins):

 1. Go to Plugins > Add New.
 2. Type in “HTML Page Sitemap” in _Search_ Plugins box.
 3. Find “HTML Page Sitemap” in the search results.
 4. Click _Install Now_ to install the WordPress Plugin.
 5. Click Activate to activate it.
 6. Add the shortcode [html_sitemap] to the page(s) of your choice.

#### Manual Plugin Installation

 1. Download this plugin to your desktop.
 2. Extract the plugin zip file (or compressed folder) to your desktop.
 3. With your FTP program, upload the plugin folder to the wp-content/plugins folder
    in your WordPress directory online.
 4. Go to Plugins screen and find “HTML Page Sitemap” plugin in the list.
 5. Click Activate to activate it.
 6. Add the shortcode [html_sitemap] to the page(s) of your choice.

## Hỏi đáp

### Why is there no settings page for the plugin?

I put together this plugin in less than 2 hours, this readme.txt actually took longer
to create. This plugin is meant to be simple and easy to use. To keep it simple,
it doesn’t add settings to your database or clutter to your admin screens.

### How do I style the html sitemap?

The HTML sitemap can be styled by specifying your own CSS class or unique element
ID. The classes and ID are added to the top level `<ul>` element of the sitemap.

### Does this plugin support Blocks?

YES! As of version 2.0, you can now add an HTML Sitemap block to your page and customize
all of the parameters.

### Does the addition of the HTML Sitemap Block impact the performance of my website?

NO! The new HTML Sitemap Block is a wrapper around the `[html_sitemap]` shortcode
that utilizes the built-in [`wp_list_pages`](https://codex.wordpress.org/Function_Reference/wp_list_pages)
function.

### Do I have to use the new Blocks feature to use this plugin?

NO! The original shortcode still works as it did in version 1.3.

## Đánh giá

![](https://secure.gravatar.com/avatar/5ff220728c1405bcadb22f29cc659b3d5b74a26a3c9c855a4f38f5eb1b991f27?
s=60&d=retro&r=g)

### 󠀁[Clean and functional sitemaps](https://wordpress.org/support/topic/clean-and-functional-sitemaps/)󠁿

 [olafkoest](https://profiles.wordpress.org/olafkoest/) 24 Tháng 4, 2025

In my experience, the HTML Page Sitemap- plug-in does exactly what it says. It lets
one create a clean looking and functional html-sitemap, which has proved very useful
to me. Cudos to the developer.

![](https://secure.gravatar.com/avatar/e76bf84dc6c6d3248ca9895f599ccf4a2230c0754d81eb4798c240f608290f29?
s=60&d=retro&r=g)

### 󠀁[works as expected](https://wordpress.org/support/topic/works-as-expected-902/)󠁿

 [Wolfferth](https://profiles.wordpress.org/dynamind/) 29 Tháng 8, 2024

thanks

![](https://secure.gravatar.com/avatar/242ffc7500fade0c97a1442b9f182aaaf9f227435d71350b5349414664b0f9ba?
s=60&d=retro&r=g)

### 󠀁[My GO-TO for working on the site](https://wordpress.org/support/topic/my-go-to-for-working-on-the-site/)󠁿

 [SynergyHub](https://profiles.wordpress.org/synergyhub/) 15 Tháng 8, 2024 1 trả
lời

I have had this Plug-in installed on every site I own or manage (currently 46 sites)
for years, and it is invaluable to me to see the hierarchy tree and get to the page
I want. I never have the tree public, but access it in the hidden admin areas we
have created. It lets me see all the Pages at once, even the ones that are hidden
to others in the menus, by member type or other criteria. I Highly Recommend this
Plug-In.. It’s simple, accurate, fast, and just makes sense with no silly unneeded
frills

![](https://secure.gravatar.com/avatar/62b5716a07538562df7272663bb68e2adb7b587ddc57f094d7cddabca704b396?
s=60&d=retro&r=g)

### 󠀁[Funciona mesmo!](https://wordpress.org/support/topic/funciona-mesmo-2/)󠁿

 [dotjunior](https://profiles.wordpress.org/dotjunior/) 8 Tháng 6, 2021

Era exatamente isso que eu estava precisando para um site de uma ONG. That’s exactly
what I needed for an NGO website. Mano, nem pense em desistir de atualizar este 
plugin. ♥‿♥ Bro, don’t think about giving up on updating this plugin. ♥‿♥ Muitíssimo
obrigado. Thank you so much.

![](https://secure.gravatar.com/avatar/903153ec37920862c02428f48d149fad2f620e9c3226f11b10b6c7348918b8b0?
s=60&d=retro&r=g)

### 󠀁[Not Working](https://wordpress.org/support/topic/not-working-3233/)󠁿

 [gamejump](https://profiles.wordpress.org/gamejump/) 23 Tháng 4, 2020

Not Working and this is my review

![](https://secure.gravatar.com/avatar/9bb84a0df6ba6adbf8a50579aa6f3a76e4a1f809416f54605c285f1e475e33eb?
s=60&d=retro&r=g)

### 󠀁[Not even 1 star](https://wordpress.org/support/topic/not-even-1-star/)󠁿

 [hadders](https://profiles.wordpress.org/hadders/) 25 Tháng 4, 2019 1 trả lời

It didn’t create a sitemap. Pointless.

 [ Đọc tất cả 22 đánh giá ](https://wordpress.org/support/plugin/html-sitemap/reviews/)

## Người đóng góp & Lập trình viên

“HTML Page Sitemap (Block and Shortcode)” là mã nguồn mở. Những người sau đã đóng
góp vào plugin này.

Những người đóng góp

 *   [ Angelo Mandato ](https://profiles.wordpress.org/amandato/)
 *   [ Painless Analytics ](https://profiles.wordpress.org/painlessanalytics/)

“HTML Page Sitemap (Block and Shortcode)” đã được dịch qua 2 ngôn ngữ. Cảm ơn [những người tham gia dịch](https://translate.wordpress.org/projects/wp-plugins/html-sitemap/contributors)
vì đóng góp của họ.

[Dịch “HTML Page Sitemap (Block and Shortcode)” sang ngôn ngữ của bạn.](https://translate.wordpress.org/projects/wp-plugins/html-sitemap)

### Muốn tham gia phát triển?

[Duyệt code](https://plugins.trac.wordpress.org/browser/html-sitemap/), check out
[SVN repository](https://plugins.svn.wordpress.org/html-sitemap/), hoặc theo dõi
[nhật ký phát triển](https://plugins.trac.wordpress.org/log/html-sitemap/) qua [RSS](https://plugins.trac.wordpress.org/log/html-sitemap/?limit=100&mode=stop_on_copy&format=rss).

## Nhật ký thay đổi

#### 2.1.3

 * Released on 2026-05-24
 * Tested with WordPress 7.0.

#### 2.1.2

 * Released on 2026-04-24
 * Updated typo documenting the `sort_order` default.

#### 2.1.1

Release skipped.

#### 2.1

 * Released on 2026-03-30
 * Preview functionality added for WordPress.org plugin directory.

#### 2.0

 * Released on 2026-03-17
 * Added Block Editor block for HTML Sitemap with support for all shortcode attributes.
 * Updated readme.txt with block editor instructions and screenshots.

#### 1.3.9

 * Released on 2026-02-11
 * Fixed security issue with Authenticated user (Contributor+), user could include
   Cross-Site Scripting within the HTML Sitemap shortcode
 * Added banner and icon images

#### 1.3.8

 * Released on 2025-12-16
 * Tested with WordPress up to version 6.9

#### 1.3.7

 * Released on 2025-04-21
 * Tested with WordPress up to version 6.8
 * Complete changelog moved to CHANGELOG.md

#### 1.3.6

 * Released on 2025-02-09
 * Tested with WordPress up to version 6.7.1
 * Project now managed on [GitHub](https://github.com/mandato-wordpress/html-sitemap)

#### 1.3.5

 * Release skipped

#### 1.3.4

 * Released on 2024-08-13
 * Tested with WordPress up to version 6.6
 * Readme.txt updated to latest requirements (ref: https://developer.wordpress.org/
   plugins/wordpress-org/how-your-readme-txt-works/)

#### Complete Changelog

[Complete changelog available on GitHub](https://github.com/mandato-wordpress/html-sitemap/blob/main/CHANGELOG.md)

## Meta

 *  Phiên bản **2.1.3**
 *  Cập nhật lần cuối **1 tuần trước**
 *  Số lượt cài đặt **10.000+**
 *  Phiên bản WordPress ** 3.7 hoặc cao hơn **
 *  Đã kiểm tra lên đến **7.0**
 *  Phiên bản PHP ** 5.4 hoặc cao hơn **
 *  Ngôn ngữ
 * [English (Canada)](https://en-ca.wordpress.org/plugins/html-sitemap/), [English (US)](https://wordpress.org/plugins/html-sitemap/),
   và [Russian](https://ru.wordpress.org/plugins/html-sitemap/).
 *  [Dịch sang ngôn ngữ của bạn](https://translate.wordpress.org/projects/wp-plugins/html-sitemap)
 * Thẻ
 * [block](https://vi.wordpress.org/plugins/tags/block/)[html sitemap](https://vi.wordpress.org/plugins/tags/html-sitemap/)
   [page](https://vi.wordpress.org/plugins/tags/page/)[shortcode](https://vi.wordpress.org/plugins/tags/shortcode/)
   [sitemap](https://vi.wordpress.org/plugins/tags/sitemap/)
 *  [Nâng cao](https://vi.wordpress.org/plugins/html-sitemap/advanced/)

## Đánh giá

 4.3 trên 5 sao.

 *  [  18 5-star reviews     ](https://wordpress.org/support/plugin/html-sitemap/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/html-sitemap/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/html-sitemap/reviews/?filter=3)
 *  [  1 2-star review     ](https://wordpress.org/support/plugin/html-sitemap/reviews/?filter=2)
 *  [  3 1-star reviews     ](https://wordpress.org/support/plugin/html-sitemap/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/html-sitemap/reviews/#new-post)

[Xem tất cả đánh giá](https://wordpress.org/support/plugin/html-sitemap/reviews/)

## Những người đóng góp

 *   [ Angelo Mandato ](https://profiles.wordpress.org/amandato/)
 *   [ Painless Analytics ](https://profiles.wordpress.org/painlessanalytics/)

## Hỗ trợ

Các lỗi đã xử lý trong vòng hai tháng gần đây:

     1 trên 1

 [Xem diễn đàn hỗ trợ](https://wordpress.org/support/plugin/html-sitemap/)

## Ủng hộ

Bạn có muốn hỗ trợ vào sự phát triển của plugin này?

 [ Ủng hộ plugin này ](http://angelo.mandato.com/contact/)