plugin-icon

Zone Manager (Zoninator)

Curation made easy! Create "zones" then add and order your content!
평가
4
최근 업데이트일
October 20, 2023
버전
0.9
활성화된 설치 항목
2K

This plugin is designed to help you curate your content.

Assign and order stories within zones that you create, edit, and delete. Then use the handy API functions to retrieve and display your content in your theme. Or for those who are a bit code-averse, try the handy widget.

Key features included in the plugin:

  • Add/edit/delete zones
  • Add/remove posts (or any custom post type) to/from zones
  • Order posts in any given zone
  • Limit capabilities on who can add/edit/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 zoninator locked

This plugin was built by Mohammad Jangda in conjunction with William Davis and the Bangor Daily News.

Usage Notes

Example

You can work with 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;

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`
무료Creator 요금제에서
활성화된 설치 항목
2K
테스트된 버전
5.7.12
이 플러그인은 다운로드 가능하며 워드프레스 독립 호스트 설치에 사용할 수 있습니다.