Title: HTML Page Sitemap (Block and Shortcode)
Author: Angelo Mandato
Published: <strong>6 Settembre 2009</strong>
Last modified: 25 Aprile 2026

---

Ricerca i 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)

 Di [Angelo Mandato](https://profiles.wordpress.org/amandato/)

[Scarica](https://downloads.wordpress.org/plugin/html-sitemap.2.1.2.zip)

 * [Dettagli](https://it.wordpress.org/plugins/html-sitemap/#description)
 * [Recensioni](https://it.wordpress.org/plugins/html-sitemap/#reviews)
 *  [Installazione](https://it.wordpress.org/plugins/html-sitemap/#installation)
 * [Sviluppo](https://it.wordpress.org/plugins/html-sitemap/#developers)

 [Supporto](https://wordpress.org/support/plugin/html-sitemap/)

## Descrizione

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

## Screenshot

 * [[
 * 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.

## Blocchi

Questo plugin fornisce 1 blocco.

 *   HTML Sitemap HTML Sitemap WordPress plugin block.

## Installazione

#### 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.

## FAQ

### 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.

## Recensioni

![](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 Aprile 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 Agosto 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 Agosto 2024 1 risposta

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 Giugno 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 Aprile 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 Aprile 2019 1 risposta

It didn’t create a sitemap. Pointless.

 [ Leggi tutte le recensioni di 22 ](https://wordpress.org/support/plugin/html-sitemap/reviews/)

## Contributi e sviluppo

“HTML Page Sitemap (Block and Shortcode)” è un software open source. Le persone 
che hanno contribuito allo sviluppo di questo plugin sono indicate di seguito.

Collaboratori

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

“HTML Page Sitemap (Block and Shortcode)” è stato tradotto in 2 lingue. Grazie a
[chi traduce](https://translate.wordpress.org/projects/wp-plugins/html-sitemap/contributors)
per il contributo.

[Traduci “HTML Page Sitemap (Block and Shortcode)” nella tua lingua.](https://translate.wordpress.org/projects/wp-plugins/html-sitemap)

### Ti interessa lo sviluppo?

[Esplora il codice](https://plugins.trac.wordpress.org/browser/html-sitemap/) segui
il [repository SVN](https://plugins.svn.wordpress.org/html-sitemap/), segui il [log delle modifiche](https://plugins.trac.wordpress.org/log/html-sitemap/)
tramite [RSS](https://plugins.trac.wordpress.org/log/html-sitemap/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 2.1.1

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

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

 *  Versione **2.1.2**
 *  Ultimo aggiornamento **3 settimane fa**
 *  Installazioni attive **10.000+**
 *  Versione WordPress ** 3.7 o superiore **
 *  Testato fino alla versione **6.9.4**
 *  Versione PHP ** 5.4 o superiore **
 *  Lingue
 * [English (Canada)](https://en-ca.wordpress.org/plugins/html-sitemap/), [English (US)](https://wordpress.org/plugins/html-sitemap/),
   e [Russian](https://ru.wordpress.org/plugins/html-sitemap/).
 *  [Traduci nella tua lingua](https://translate.wordpress.org/projects/wp-plugins/html-sitemap)
 * Tag
 * [block](https://it.wordpress.org/plugins/tags/block/)[html sitemap](https://it.wordpress.org/plugins/tags/html-sitemap/)
   [page](https://it.wordpress.org/plugins/tags/page/)[shortcode](https://it.wordpress.org/plugins/tags/shortcode/)
   [sitemap](https://it.wordpress.org/plugins/tags/sitemap/)
 *  [Visualizzazione avanzata](https://it.wordpress.org/plugins/html-sitemap/advanced/)

## Valutazioni

 4.3 su 5 stelle.

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

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

[Vedi tutte le recensioni](https://wordpress.org/support/plugin/html-sitemap/reviews/)

## Collaboratori

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

## Supporto

Hai qualcosa da dire? Ti serve aiuto?
Problemi risolti negli ultimi due mesi:

     1 su 1

 [Chiedi nel forum di supporto](https://wordpress.org/support/plugin/html-sitemap/)

## Donazioni

Vuoi sostenere le versioni future?

 [ Fai una donazione per lo sviluppo ](http://angelo.mandato.com/contact/)