我试图使用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
?>
这似乎没有像我预期的那样剥离标签。
答案 0 :(得分:1)
将the_content()
更改为get_the_content()
。
the_content()
用于直接输出内容,而get_the_content
返回要存储在变量中的内容以供进一步处理。
$footertext = get_the_content();