Puedes limpiar las etiquetas html con
strip_tags antes de cortar el texto.
Código PHP:
Ver original$notice = $row_noticias2['cuerpo_noticia'];
$max = 200;
$row_noticias2['cuerpo_noticia'] = substr($notice, 0, 200); }
echo $row_noticias2['cuerpo_noticia']. "...";