Created
August 15, 2015 19:04
-
-
Save theukedge/829fe673b8e1dc5bd4e2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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