wp-our-programs

plugin banner

Display organization programs with descriptions and links as a post.

Author:XicoOfficial (profile at wordpress.org)
WordPress version required:3.8
WordPress version tested:4.9.25
Plugin version:1.2.0
Added to WordPress repository:04-01-2016
Last updated:18-04-2018
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:0
Rated by:0
Plugin URI:http://wowdevshop.com
Total downloads:781
plugin download
Click to start download

Organization Programs Management

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

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;?>

Screenshots
FAQ
ChangeLog