Skip to content

Instantly share code, notes, and snippets.

@theukedge
Created August 15, 2015 19:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theukedge/829fe673b8e1dc5bd4e2 to your computer and use it in GitHub Desktop.
Save theukedge/829fe673b8e1dc5bd4e2 to your computer and use it in GitHub Desktop.
<?php function add_video_suffix( $title, $id = null ) {
if( in_the_loop() && in_category( 'Videos', $id ) ) {
$title .= ' [VIDEO]';
}
return $title;
}
add_filter( 'the_title', 'add_video_suffix' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment