Skip to content

Instantly share code, notes, and snippets.

@bappi-d-great
Created July 25, 2014 16:04
Show Gist options
  • Save bappi-d-great/7370e20c0a4b23978d83 to your computer and use it in GitHub Desktop.
Save bappi-d-great/7370e20c0a4b23978d83 to your computer and use it in GitHub Desktop.
Add Excerpt in WPMU Events+ plugin
<?php
add_filter( 'eab-event-post_type-supports', 'adding_excerpt_support' );
function adding_excerpt_support($supports) {
$supports[] = 'excerpt';
return $supports;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment