我试图使用strip_tags()过滤掉wordpress中帖子中的所有标签。我是这样设置的:
<?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
?>
这似乎并没有像我预期的那样去除标签。