Skip to content

Instantly share code, notes, and snippets.

@JLeuze
Last active October 5, 2015 00:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JLeuze/2725756 to your computer and use it in GitHub Desktop.
Save JLeuze/2725756 to your computer and use it in GitHub Desktop.
Plugin to add excerpts to Meteor Slides
<?php /*
Plugin Name: Meteor Excerpts
Description: Adds excerpts to Meteor Slides.
Author: Josh Leuze
Author URI: http://jleuze.com/
Version: 1.0
*/
function meteorslides_add_excerpt() {
add_post_type_support( 'slide', 'excerpt' );
}
add_action( 'init', 'meteorslides_add_excerpt' ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment