Skip to content

Instantly share code, notes, and snippets.

@michael-cannon
Created June 21, 2013 19:39
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 michael-cannon/5833774 to your computer and use it in GitHub Desktop.
Save michael-cannon/5833774 to your computer and use it in GitHub Desktop.
Filter testimonials_widget_version example
add_filter( 'testimonials_widget_version', array( &$this, 'version' ) );
public function version( $version ) {
$version .= '-' . self::PLUGIN_SLUG . '-' . self::VERSION;
return $version;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment