‘;

// Título
$output .= ‘

‘ . esc_html($title) . ‘

‘;

// Meta informações
if ($atts[‘show_date’] === ‘true’) {
$output .= ‘

‘;
}

// Excerpt
if ($atts[‘show_excerpt’] === ‘true’) {
$excerpt = get_the_excerpt($post->ID);
if ($excerpt) {
$output .= ‘

‘ . wp_trim_words($excerpt, 20, ‘…’) . ‘

‘;
}
}

$output .= ‘