WP Post Formats

WP Post Formats is a plugin that enables theme authors and developers to edit the differences in post formats from wp-admin with minimal theme modification.

getting started

  1. Install the plugin via the normal means.
  2. Navigate to Settings -> WP Post Formats in wp-admin
  3. Select the desired post formats at the top of the page.
  4. Add the template tag display_wp_post_format() in between the loop in your theme where you want the post format differences to be displayed.

Installing in Twenty Fourteen

index.php - Line 41

//get_template_part( 'content', get_post_format() );
if( function_exists( 'display_wp_post_format' ) ){
    display_wp_post_format();
} else {
    get_template_part( 'content', get_post_format() );
}