Plugin info

Total downloads: 104,104
Active installs: 2,000
Total reviews: 3
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 3 language(s)
Contributors: 13
Last updated: 10/2/2025 (90 days ago)
Added to WordPress: 4/8/2011 (14 years old)
Minimum WordPress version: 5.9
Tested up to WordPress version: 6.6.4
Minimum PHP version: 7.4

Maintenance & Compatibility

Maintenance score

Actively maintained • Last updated 90 days ago • 3 reviews

61/100

Is Zone Manager (Zoninator) abandoned?

Likely maintained (last update 90 days ago).

Compatibility

Requires WordPress: 5.9
Tested up to: 6.6.4
Requires PHP: 7.4

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

WooCommerce Sendle Shipping Method
Rating 4.2/5 (5 reviews)Active installs 100
Woocommerce Product Shipping Table Rates
Rating 0.0/5 (0 reviews)Active installs 10
Nepalify
Rating 0.0/5 (0 reviews)Active installs 0
Schedule post into Zoninator zone
Rating 0.0/5 (0 reviews)Active installs 0

Description

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 in conjunction with William Davis and the Bangor Daily News.

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.

Installation

  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;

Frequently Asked Questions

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

Review feed

No reviews available

Screenshots

  1. Create and manage your zones and content through a fairly intuitive and familiar interface.

    Create and manage your zones and content through a fairly intuitive and familiar interface.

  2. Zone editing<br />

    Zone editing

  3. Use the Zone Posts widget in the widgets area.<br />

    Use the Zone Posts widget in the widgets area.

  4. Output of the zone posts widgets.<br />

    Output of the zone posts widgets.

Changelog

Please visit the changelog.