Our Partners by WOWProjects

Our Partners by WOWProjects Install Statistics

11
100%
Today: 11 Yesterday: 0 All-time: 1,905 downloads
Our Partners by WOWProjects Icon

Try plugin: Our Partners by WOWProjects

We'll create fresh WordPress site with Our Partners by WOWProjects installed. You have 20 minutes to test the plugin after that site we'll be deleted.

Takes ~10 seconds to install.

About Our Partners by WOWProjects

This plugin registers the 'partner' post type, it let's you manage your company partner profiles.

0


0


0


0


0

updated: 6 years ago
since: 8 years ago
author: XicoOfficial

Description

Organization Partners Management

“Our Partners by WOWProjects” is a clean and easy-to-use organization partners management system for WordPress. Load in your partners 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 partners 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' => 'partners');

Define the loop based on arguments

$loop = new WP_Query( $args );

Display the contents

Usage Examples

<?php
$args = array('post_type' => 'bios');
$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;?>