1

我试图使用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
?>

这似乎并没有像我预期的那样去除标签。

4

1 回答 1

1

更改the_content()get_the_content()

the_content()用于直接输出内容,而get_the_content返回内容以存储在变量中以供进一步处理。

$footertext = get_the_content(); 
于 2011-05-16T05:34:03.700 回答