Title: Page Siblings
Author: Ionut Staicu
Published: <strong>2012년 11월 2일</strong>
Last modified: 2025년 3월 14일

---

플러그인 검색

![](https://ps.w.org/page-siblings/assets/banner-772x250.png?rev=620439)

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

![](https://s.w.org/plugins/geopattern-icon/page-siblings_f9f9f9.svg)

# Page Siblings

 작성자: [Ionut Staicu](https://profiles.wordpress.org/iamntz/)

[다운로드](https://downloads.wordpress.org/plugin/page-siblings.zip)

 * [세부사항](https://ko.wordpress.org/plugins/page-siblings/#description)
 * [평가](https://ko.wordpress.org/plugins/page-siblings/#reviews)
 *  [설치](https://ko.wordpress.org/plugins/page-siblings/#installation)
 * [개발](https://ko.wordpress.org/plugins/page-siblings/#developers)

 [지원](https://wordpress.org/support/plugin/page-siblings/)

## 설명

Ever had to manage a WP install with many pages and subpages? This plugin does nothing
more than adding a metabox to every post type that is hierarchical (that is pages
and any other custom post type!) with a list of all page siblings, starting with
the parent, so you can have:

    ```
    News
    |— History
    |— Our Staff
    |—— Employment Opportunities
    |— Our Company
    ```

Bonus: when you’re listing posts on admin pages, you can also choose to display 
only parents.

### API

You can choose to disable some (or all!) functionality by using filters. These filters
are as following:

**Disable page siblings metabox completely:**

    ```
    add_filter('iamntz/page-siblings/add-page-metabox', '__return_false')
    ```

**For `my-custom-post-type`**

    ```
    add_filter("iamntz/page-siblings/add-page-metabox/post-type=my-custom-post-type", '__return_false')
    ```

**Disable the dropdown that will allow you to filter page parents or page parents&
children**

    ```
    add_filter('iamntz/page-siblings/add-hierarchy-column-filter', '__return_false')
    ```

**For `my-custom-post-type`:**

    ```
    add_filter('iamntz/page-siblings/add-hierarchy-column-filter/post-type=my-custom-post-type', '__return_false')
    ```

**Set the default value for the dropdown:**

    ```
    add_filter('iamntz/page-siblings/add-hierarchy-column-filter', function() { return 'parents_only'; })
    ```

**For `my-custom-post-type`:**

    ```
    // The allowed values are `all` and `parents_only`.
    add_filter('iamntz/page-siblings/hierarchy-column-filter-default/post-type=my-custom-post-type', function() { return 'parents_only'; })
    ```

## 스크린샷

[⌊Page Siblings metabox⌉⌊Page Siblings metabox⌉[

Page Siblings metabox

## 설치

 1. Upload the `page-siblings` folder to the `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Done. You will see a box with page siblings when you edit a page

## 후기

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

## 기여자 & 개발자

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

기여자

 *   [ Ionut Staicu ](https://profiles.wordpress.org/iamntz/)

[자국어로 “Page Siblings”(을)를 번역하세요.](https://translate.wordpress.org/projects/wp-plugins/page-siblings)

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

[코드 탐색하기](https://plugins.trac.wordpress.org/browser/page-siblings/)는, [SVN 저장소](https://plugins.svn.wordpress.org/page-siblings/)
를 확인하시거나, [개발 기록](https://plugins.trac.wordpress.org/log/page-siblings/)
을 [RSS](https://plugins.trac.wordpress.org/log/page-siblings/?limit=100&mode=stop_on_copy&format=rss)
로 구독하세요.

## 변경이력

#### 1.0

 * Initial version

#### 1.0.1

 * added a filtering option to page editing, so you can only display parent pages

#### 1.0.2

 * tweaked code a little & removed PHP notices & warnings

#### 1.0.3

 * Updated readme

#### 1.0.4

 * added correct sorting for pages (thanks Jakob for pointing this)

#### 1.0.5

 * We shouldn’t display filtering option on post types that aren’t hierarchical!

#### 1.0.6

 * Version Bump

#### 1.0.7

 * Added some filters to allow disabling some boxes

#### 1.0.8

 * Fixed edgecase ACF compatibility
 * Moved the metabox on the main screen (rather than on side)
 * Added filtering

## 기초

 *  버전 **1.0.8**
 *  최근 업데이트: **1년 전**
 *  활성화된 설치 **20+**
 *  워드프레스 버전 ** 3.0 또는 그 이상 **
 *  다음까지 시험됨: **4.9.29**
 *  언어
 * [English (US)](https://wordpress.org/plugins/page-siblings/)
 * 태그:
 * [custom post type](https://ko.wordpress.org/plugins/tags/custom-post-type/)[page administration](https://ko.wordpress.org/plugins/tags/page-administration/)
   [utils](https://ko.wordpress.org/plugins/tags/utils/)
 *  [고급 보기](https://ko.wordpress.org/plugins/page-siblings/advanced/)

## 평점

 별 5점 만점에 5점.

 *  [  1/5-별점 후기     ](https://wordpress.org/support/plugin/page-siblings/reviews/?filter=5)
 *  [  0/4-별점 후기     ](https://wordpress.org/support/plugin/page-siblings/reviews/?filter=4)
 *  [  0/3-별점 후기     ](https://wordpress.org/support/plugin/page-siblings/reviews/?filter=3)
 *  [  0/2-별점 후기     ](https://wordpress.org/support/plugin/page-siblings/reviews/?filter=2)
 *  [  0/1-별점 후기     ](https://wordpress.org/support/plugin/page-siblings/reviews/?filter=1)

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

[모든  리뷰 보기](https://wordpress.org/support/plugin/page-siblings/reviews/)

## 기여자

 *   [ Ionut Staicu ](https://profiles.wordpress.org/iamntz/)

## 지원

할 말 있으신가요? 도움이 필요하신가요?

 [지원 포럼 보기](https://wordpress.org/support/plugin/page-siblings/)