Nello snippet di codice qui sotto, sto cercando di ottenere the_excerpt da scrivere senza tag. Tuttavia, la formattazione di origine mostra che the_excerpt è sempre racchiuso tra tag P. Come posso estrarre l'estratto senza tag?
foreach($myrecentposts as $idxrecent=>$post)
{ ?>
<li class="page_item">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php echo strip_tags(substr( the_excerpt(), 0, 75 ))."..." ?>
</li><?php }
echo "</ul>
</div>";}