이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

WP Sitemap

설명

Place a shortcode into a post or a page (page recommended) and your sitemap will apear as a list with page numbers.

Shortcode simple example

[wp_sitemap]

Features

  • Support for both posts and pages
  • Support for page numbers and option to place it on top or bottom
  • Support for include and exclude pages / posts
  • Support for disable posts / pages
  • Support for order by and sort order
  • No data added to the database
  • No settings page added into admin
  • Sitemap settings are added through a shortcode added in a page
  • WordPress built in functions are used to make a very small code

Shortcode advanced example

[wp_sitemap pages=”false” exclude=”9,21,34″]

Parameters

exclude

  • (string) Define a comma-separated list of Page IDs to be excluded from the list (example: ‘exclude=3,7,31’). There is no default value.

include

  • (string) Only include certain Pages or Posts in the sitemap. Like exclude, this parameter takes a comma-separated list of Page IDs. There is no default value.

posts

  • (string) Include Posts. Valid values:
    • true – Posts are included. (Default)
    • false – Posts are not included.

pages

  • (string) Include Pages. Valid values:
    • true – Pages are included. (Default)
    • false – Pages are not included.

sort_column

  • (string) Sorts the list of Posts and Pages in a number of different ways. The default setting is sort newest first by Post / Page date.
    • ‘post_date’ – Published Post / Page date. (Default)
    • ‘post_title’ – The Post or Page title.
    • ‘post_modified’ – The updated Post or Page date.
    • ‘comment_count’ – The number of comments on a Post or Page.
    • Other fields in the Posts table.

sort_order

  • (string) Change the sort order of the list of Pages (either ascending or descending). The default is ascending. Valid values:
    • ‘ASC’ – Sort from lowest to highest.
    • ‘DESC’ – Sort from highest to lowest. (Default)

paging_position

  • (string) The position of the page numbers. Valid values:
    • ‘top’ – Add page numbers above the sitemap list
    • ‘bottom’ – Add the page numbers below the sitemap list (Default)
    • ‘both’ – Add page numbers above and below the sitemap list

post_count

  • (string) Sets the number of Pages and Posts to display. The default is 50.

Shortcode default settings

If you don’t know what this means, just ignore this section.

  • exclude => 0
  • include => 0
  • posts => “true”
  • pages => “true”
  • sort_column => “post_date”
  • sort_order => “DESC”
  • paging_position => “bottom”
  • post_count => 50

설치

This section describes how to install the plugin and get it working.

  1. Upload the folder ‘wp-sitemap’ to the ‘/wp-content/plugins/’ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Add the shortcode [wp_sitemap] to a post or a page (page rekommended)
  4. Look at the post / page. Done!

FAQ

Where is the settings page?

There are none. You can add settings into the shortcode.

후기

이 플러그인에 대한 평가가 없습니다.

기여자 & 개발자

“WP Sitemap”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “WP Sitemap”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

1.0

  • Initial release