function truncate($string, $limit, $break=".", $pad="...") {
if(strlen($string) <= $limit) return $string;
if(false !== ($breakpoint = strpos($string, $break, $limit))) {
if($breakpoint < strlen($string) - 1) {
$string = substr($string, 0, $breakpoint) . $pad;
}
}
return $string;
}
?>
Noticias - Brotherwood · Brotherwood
Artículos. Noticias y Recomendaciones.
A continuación encontrarás breves artículos escritos por nosotros, recomendaciones de cervezas, bares, restaurantes y noticias del rubro cervecero.
Ganadores Copa Cervezas de América 2019 (Chile)
echo truncate(get_the_excerpt(), 200, ' '); ?>
Ver Noticia
echo truncate(get_the_title(), 30, ' '); ?>
echo truncate(get_the_excerpt(), 150, ' '); ?>
Ver Más
echo truncate(get_the_title(), 30, ' '); ?>
echo truncate(get_the_excerpt(), 150, ' '); ?>
Ver Más
echo truncate(get_the_title(), 30, ' '); ?>
echo truncate(get_the_excerpt(), 150, ' '); ?>
Ver Más
echo truncate(get_the_title(), 30, ' '); ?>
echo truncate(get_the_excerpt(), 150, ' '); ?>
Ver Más
Suscríbete al newsletter
Entérate primero de nuestras noticias y catas.