Skip to content

Instantly share code, notes, and snippets.

@alanef
Last active March 22, 2021 11:01
Show Gist options
  • Select an option

  • Save alanef/a69558ec98773810f5897824f799faa6 to your computer and use it in GitHub Desktop.

Select an option

Save alanef/a69558ec98773810f5897824f799faa6 to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: Custom Exceprt Filter
* Description: Custom Excerpt Filter for Display Eventbrite
* Version: 1.0
*/
// just a check to make sure no hacker tries this file
if ( ! defined('ABSPATH') ) {
die();
}
add_filter( 'eawp_excerpt', function($content) {
return the_content();
}, 10,1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment