Avada › Forums › Community Forum › Post card element does not distinguish post format › Reply To: Post card element does not distinguish post format
I answer in case it is worth to someone.
Add this function to functions.php
function add_chat_class_to_title( $title, $id = null ) {
if( get_post_format( $id ) == ‘video’ ) {
$title = ‘<span class=”video”>’ . $title . ‘</span>’;
}
return $title;
}
add_filter( ‘the_title’, ‘add_chat_class_to_title’, 10, 2 );