ID ) ) { $classes[] = 'no-post-thumbnail'; } return $classes; } add_filter( 'post_class', 'cassions_no_thumbnail_class' ); /** * Filter the except length to 20 characters. * * @param int $length Excerpt length. * @return int (Maybe) modified excerpt length. */ if ( ! function_exists( 'cassions_custom_excerpt_length' ) ) : function cassions_custom_excerpt_length( $length ) { return 35; } add_filter( 'excerpt_length', 'cassions_custom_excerpt_length', 999 ); endif; if ( ! function_exists( 'cassions_excerpt_more' ) ) : function cassions_excerpt_more( $more ) { return '...'; } add_filter( 'excerpt_more', 'cassions_excerpt_more' ); endif;