Wordpress php回声问题

时间:2011-05-16 05:29:59

标签: php wordpress strip-tags

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

这似乎没有像我预期的那样剥离标签。

1 个答案:

答案 0 :(得分:1)

the_content()更改为get_the_content()

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

$footertext = get_the_content();