Title: Zone Manager (Zoninator)
Author: Automattic
Published: <strong>2011年4月8日</strong>
Last modified: 2025年10月2日

---

プラグインを検索

このプラグインは **WordPress の最新3回のメジャーリリースに対してテストされていま
せん**。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの WordPress
で使用した場合は互換性の問題が発生する可能性があります。

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

# Zone Manager (Zoninator)

 作者: [Automattic](https://profiles.wordpress.org/automattic/)

[ダウンロード](https://downloads.wordpress.org/plugin/zoninator.0.10.2.zip)

 * [詳細](https://ja.wordpress.org/plugins/zoninator/#description)
 * [レビュー](https://ja.wordpress.org/plugins/zoninator/#reviews)
 *  [インストール](https://ja.wordpress.org/plugins/zoninator/#installation)
 * [開発](https://ja.wordpress.org/plugins/zoninator/#developers)

 [サポート](https://wordpress.org/support/plugin/zoninator/)

## 説明

This plugin is designed to help you curate your content. It lets you assign and 
order stories within zones that you create, edit, and delete, and display those 
groupings of related stories on your site.

This plugin was originally built by [Mohammad Jangda](http://digitalize.ca) in conjunction
with [William Davis](http://wpdavis.com/) and the [Bangor Daily News](http://www.bangordailynews.com/).

### Features

 * Add, edit, and delete zones.
 * Add and remove posts (or any custom post type) to or from zones.
 * Order posts in any given zone.
 * Limit capabilities on who can add, edit, and delete zones vs add content to zones.
 * Locking mechanism, so only one user can edit a zone at a time (to avoid conflicts).
 * Idle control, so people can’t keep the zone locked.

### Function Reference

Get an array of all zones:

    ```
    z_get_zones()
    ```

Get a single zone, accepts either ID or slug:

    ```
    z_get_zone( $zone )
    ```

Get an array of ordered posts in a given zone, accepts either ID or slug:

    ```
    z_get_posts_in_zone( $zone )
    ```

Get a WP_Query object for a given zone, accepts either ID or slug:

    ```
    z_get_zone_query( $zone );
    ```

More functions listed in `functions.php`.

## スクリーンショット

 * [[
 * Create and manage your zones and content through a fairly intuitive and familiar
   interface.
 * [[
 * Zone editing
 * [[
 * Use the Zone Posts widget in the widgets area.
 * [[
 * Output of the zone posts widgets.

## インストール

 1. Unzip contents and upload to the `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Go to Dashboard > Zones to create and manage your zones, and easily search for 
    and add existing posts.
 4. Use the plugin’s handy API functions to add zones to your theme that retrieve and
    display your content. Or, for those who are a bit code-averse, go to Appearance-
    Widgets and add Zone Posts widgets to display your zone posts in your sidebar or
    footer. The widget will pull the posts from the chosen zone.

### Usage examples

You can work with a zone’s posts either as an array or a WP_Query object.

**WP_Query**

    ```
    $zone_query = z_get_zone_query( 'homepage' );
    if ( $zone_query->have_posts() ) :
        while ( $zone_query->have_posts() ) : $zone_query->the_post();
            echo '<li>' . get_the_title() . '</li>';
        endwhile;
    endif;
    wp_reset_query();
    ```

**Posts Array**

    ```
    $zone_posts = z_get_posts_in_zone( 'homepage' );
    foreach ( $zone_posts as $zone_post ) :
        echo '<li>' . get_the_title( $zone_post->ID ) . '</li>';
    endforeach;
    ```

## FAQ

### How do I disable the locking feature?

You can use a filter:

    ```
    add_filter( 'zoninator_zone_max_lock_period', 'z_disable_zoninator_locks' );
    ```

### How do I change the locking feature settings?

Filter the following and change according to your needs:

 * Number of seconds a lock is valid for, default `30`: `zoninator_zone_lock_period`
 * Max idle time in seconds: `zoninator_zone_max_lock_period`

## 評価

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

### 󠀁[Reliable and scalable](https://wordpress.org/support/topic/reliable-and-scalable/)󠁿

 [cjaimet](https://profiles.wordpress.org/cjaimet/) 2018年10月19日

We have been using this plugin for five years on 20 major news sites and it is integral
to our daily work.

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

### 󠀁[Good!](https://wordpress.org/support/topic/good-1606/)󠁿

 [1](https://profiles.wordpress.org/f4tal1st/) 2016年9月3日

I have a idea for my blog, where some topic divided to few different posts ans user
can freely navigate between different parts of it. This plugin helped me a lot! 
Thanks developer!

 [ 3件のレビューをすべて表示 ](https://wordpress.org/support/plugin/zoninator/reviews/)

## 貢献者と開発者

Zone Manager (Zoninator) はオープンソースソフトウェアです。以下の人々がこのプラグ
インに貢献しています。

貢献者

 *   [ Automattic ](https://profiles.wordpress.org/automattic/)
 *   [ Mohammad Jangda ](https://profiles.wordpress.org/batmoo/)
 *   [ WordPress VIP ](https://profiles.wordpress.org/wpcomvip/)
 *   [ pkevan ](https://profiles.wordpress.org/pkevan/)
 *   [ Bradford Campeau-Laurion ](https://profiles.wordpress.org/potatomaster/)
 *   [ Jeff Bowen ](https://profiles.wordpress.org/jblz/)
 *   [ nickdaugherty ](https://profiles.wordpress.org/nickdaugherty/)
 *   [ Josh Betz ](https://profiles.wordpress.org/betzster/)
 *   [ Gary Jones ](https://profiles.wordpress.org/garyj/)

“Zone Manager (Zoninator)” は2ロケールに翻訳されています。 [翻訳者](https://translate.wordpress.org/projects/wp-plugins/zoninator/contributors)
のみなさん、翻訳へのご協力ありがとうございます。

[“Zone Manager (Zoninator)” をあなたの言語に翻訳しましょう。](https://translate.wordpress.org/projects/wp-plugins/zoninator)

### 開発に興味がありますか ?

[コードを閲覧](https://plugins.trac.wordpress.org/browser/zoninator/)するか、[SVN リポジトリ](https://plugins.svn.wordpress.org/zoninator/)
をチェックするか、[開発ログ](https://plugins.trac.wordpress.org/log/zoninator/)を
[RSS](https://plugins.trac.wordpress.org/log/zoninator/?limit=100&mode=stop_on_copy&format=rss)
で購読してみてください。

## 変更履歴

Please visit the [changelog](https://github.com/automattic/zoninator/blob/trunk/CHANGELOG.md).

## メタ

 *  バージョン **0.10.2**
 *  最終更新日 **7か月前**
 *  有効インストール数 **2,000+**
 *  WordPress バージョン ** 5.9またはそれ以降 **
 *  検証済み最新バージョン: **6.6.5**
 *  PHP バージョン ** 7.4またはそれ以降 **
 *  言語
 * [Croatian](https://hr.wordpress.org/plugins/zoninator/)、[English (UK)](https://en-gb.wordpress.org/plugins/zoninator/)、
   [English (US)](https://wordpress.org/plugins/zoninator/).
 *  [プラグインを翻訳](https://translate.wordpress.org/projects/wp-plugins/zoninator)
 * タグ
 * [order](https://ja.wordpress.org/plugins/tags/order/)[post list](https://ja.wordpress.org/plugins/tags/post-list/)
   [post order](https://ja.wordpress.org/plugins/tags/post-order/)[posts](https://ja.wordpress.org/plugins/tags/posts/)
   [zones](https://ja.wordpress.org/plugins/tags/zones/)
 *  [詳細を表示](https://ja.wordpress.org/plugins/zoninator/advanced/)

## 評価

 5つ星中5つ星

 *  [  3 5-星レビュー     ](https://wordpress.org/support/plugin/zoninator/reviews/?filter=5)
 *  [  0 4-星レビュー     ](https://wordpress.org/support/plugin/zoninator/reviews/?filter=4)
 *  [  0 3-星レビュー     ](https://wordpress.org/support/plugin/zoninator/reviews/?filter=3)
 *  [  0 2-星レビュー     ](https://wordpress.org/support/plugin/zoninator/reviews/?filter=2)
 *  [  0 1-星レビュー     ](https://wordpress.org/support/plugin/zoninator/reviews/?filter=1)

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

[すべてのレビューを見る](https://wordpress.org/support/plugin/zoninator/reviews/)

## 貢献者

 *   [ Automattic ](https://profiles.wordpress.org/automattic/)
 *   [ Mohammad Jangda ](https://profiles.wordpress.org/batmoo/)
 *   [ WordPress VIP ](https://profiles.wordpress.org/wpcomvip/)
 *   [ pkevan ](https://profiles.wordpress.org/pkevan/)
 *   [ Bradford Campeau-Laurion ](https://profiles.wordpress.org/potatomaster/)
 *   [ Jeff Bowen ](https://profiles.wordpress.org/jblz/)
 *   [ nickdaugherty ](https://profiles.wordpress.org/nickdaugherty/)
 *   [ Josh Betz ](https://profiles.wordpress.org/betzster/)
 *   [ Gary Jones ](https://profiles.wordpress.org/garyj/)

## サポート

意見や質問がありますか ?

 [サポートフォーラムを表示](https://wordpress.org/support/plugin/zoninator/)