开发者 | amandato |
---|---|
更新时间 | 2024年8月13日 10:12 |
捐献地址: | 去捐款 |
PHP版本: | 4.3 及以上 |
WordPress版本: | 6.6 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
[html_sitemap]
shortcode. This plugin can display a sitemap with specific depths, from a specific parent page and include/exclude specific children. Shortcode attributes include sort_column
, sort_order
, exclude
, include
, depth
, child_of
, meta_key
, meta_value
, authors
, number
, offset
, post_type
, and post_status
, everything the wp_list_pages
function accepts. In addition to the wp_list_pages
options you can also set class
, id
, and ordered_list_type
options.
This plugin is perfect for those who use WordPress as a CMS.
Please see documentation for the wp_list_pages
for a complete list of options.
The following options may be configured in addition to options documented in wp_list_pages
:
The class
and id
attributes may specified set class or id values for the initial HTML Page Sitemap <ul>
list tag.
The child_of
attribute value can be a numeric page ID (integer), or use the custom value CURRENT or PARENT. The value "CURRENT" will use the current page's ID. The value "PARENT" will uses the curent page's parent ID.
The ordered_list_type
attribute is an HTML Page Sitemap plugin exclusive option for specfiying an ordered list type. Not setting a ordered_list_type will use an unordered list (default).
ordered_list_type="1"
- The list items will be numbered with numbersordered_list_type="A"
- The list items will be numbered with uppercase lettersordered_list_type="a"
- The list items will be numbered with lowercase lettersordered_list_type="I"
- The list items will be numbered with uppercase roman numbersordered_list_type="i"
- The list items will be numbered with lowercase roman numbers[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]
For the latest information visit the website.
http://www.pluginspodcast.com/plugins/html-page-sitemap/
ATTENTION: HTML-SITEMAP SHORTCODE HAS CHANGED
Though html-sitemap
still works, the new HTML Sitemap shortcode is html_sitemap
. The dash/hyphen may not get processed correctly if other plugins use the same prefix such as the Syntax Highlighter plugin. read more, and more
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.
ordered_list_type
option to use an ordered list rather than unordered. (Thanks Allie for the feature suggestion!)<ul>
. (Thanks phorbidden for the feature suggestion!)html_sitemap
and htmlsitemap
shortcodes work. read more here