by Edwin Xico (XicoOfficial) on WordPress.org
This plugin registers the 'partner' post type, it let's you manage your company partner profiles.
The organization partner management screen within the WordPress admin.
“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.
Looking for a helping hand? View plugin documentation.
Looking to contribute code to this plugin? Go ahead and fork the repository over at GitHub.
(submit pull requests to the latest “release-” tag)
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
'bios');
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
?>