/*
Theme Name: Themify Ultra Child
Description: A child theme of Themify Ultra
Template: themify-ultra
Author: webztechie.dev@gmail.com (webztechie.dev@gmail.com)
*/

/* Woohoo! Let's customize! */

add_filter( 'the_title', function( $title ){
    $max  = 20;
    if ( !is_archive() || !is_home() || $max > strlen( $title ) ) {
        return $title;
    }
    return substr( $title, 0, $max ) . "&hellip;";
}, 10, 2 );