WP-Diagram

Allow users to set custom post loops for different positions of the theme in a widget-like admin interface.

Author:Vinicius Massuchetto (profile at wordpress.org)
WordPress version required:3.0
WordPress version tested:3.5.2
Plugin version:0.02
Added to WordPress repository:16-09-2012
Last updated:25-07-2013
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://vinicius.soylocoporti.org.br/wp-diagra...
Total downloads:685
Active installs:10+
plugin download
Click to start download

In commercial theme development it's common to have different post listings across several positions of the theme. We usually end up creating post types and specific categories for users to put posts in these positions.

This plugin creates a dedicated interface for post positioning and scheduling in the theme. For example, assume you want two different post listings, one for a top slideshow, and another for featured news:

Register the positions in your functions.php:

wp_diagram_register_positions( array(
    array(
        'id' => 'home_slideshow',
        'name' => 'Home Slideshow'
    ),
    array(
        'id' => 'featured_news',
        'name' => 'Featured News'
    )
) );

Then, after selecting the posts for each position in the Positioning menu in the admin interface, just call the custom loop in your template:

<?php $slideshow = wp_diagram_get_query( 'home_slideshow' ); ?>
<?php if ( $slideshow->have_posts() ) : ?>
    <?php while( $slideshow->have_posts() ) : $slideshow->the_post(); ?>

        <?php // Post loop like any other ?>

    <?php endwhile; ?>
<?php endif; ?>

The custom loop above will get the posts scheduled for the home_slideshow in the current time.