Я пытаюсь отфильтровать все теги внутри поста в WordPress с помощью strip_tags ().Я настроил это так:
<?php
// The Query
echo date ("Y");
query_posts( 'p=10' );
// The Loop
while ( have_posts() ) : the_post();
$footertext = the_content();
echo strip_tags($footertext);
endwhile;
// Reset Query
?>
Похоже, теги не удаляются так, как я ожидал.