get_posts和the_content之间有什么区别?

时间:2010-04-04 15:10:07

标签: wordpress

有什么区别?如何用get_posts替换the_content(在循环中使用)?

3 个答案:

答案 0 :(得分:1)

get_posts()执行名称所说的内容:收集大量帖子。 the_content()返回单个帖子的内容。它们不可互换。

答案 1 :(得分:1)

答案 2 :(得分:1)

基本上the_loop与

类似
foreach  (get_posts('showpost=-1') as $mypost) {
     //and the output of the_content is similar with
     echo $mypost->post_content;
}

PS:如果你没有在正确的LOOP中使用the_content并使用上述方法进行更改,那么你将失去一些wordpress功能,如Shortcode API,Content Sanitation等。这些功能将帮助你清理您的内容并添加更多功能。