Prepend Entry Title
//* Prepend entry title...
add_filter( 'the_title', 'wpdevco_training_title' );
function wpdevco_training_title( $title ) {
if ( 'training' == get_post_type() && in_the_loop() ) {
$title = 'Training Log: ' . $title;
}
return $title;
}