Our Members By WOWProjects Wordpress Plugin - Rating, Reviews, Demo & Download

Our Members By WOWProjects Preview Wordpress Plugin - Rating, Reviews, Demo & Download
No ratings yet
Free
Follow for free plugins, new theme releases and theme news

Plugin Description

Organization Members Management

“Our Members by WOWProjects” is a clean and easy-to-use organization members management system for WordPress. Load in your members and display them on a page as posts, with their own categories.

Support

Looking for a helping hand? View plugin documentation.

Get Involved

Looking to contribute code to this plugin? Go ahead and fork the repository over at GitHub.
(submit pull requests to the latest “release-” tag)

Usage

To display your organization members via a theme or a custom plugin, please use the following code:

Define your custom post type name in the arguments

$args = array('post_type' => 'members');

Define the loop based on arguments

$loop = new WP_Query( $args );

Display the contents

Usage Examples

<?php
$args = array('post_type' => 'members');
$loop = new WP_Query( $args );

while ( $loop->have_posts() ) : $loop->the_post();
?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<div class="entry-content">
<?php the_content(); ?>
</div>
<?php endwhile;?>

Screenshots

  1. <p>The organization member management screen within the WordPress admin.</p>

    The organization member management screen within the WordPress admin.

  2. <p>The organization members options on the settings menu.</p>

    The organization members options on the settings menu.

  3. <p>The organization members posted.</p>

    The organization members posted.


Reviews & Comments