我正在尝试通过 wordpress 中的短代码打印出自定义帖子。一切似乎都在工作,除了我无法打印出帖子的内容。我的代码如下。
function sc_liste($atts, $content = null) {
global $post;
$myposts = get_posts('post_type=section_modules&category_name=aboutiia&order=ASC&posts_per_page=3');
$retour = '<div class="container-fluid sectionBoxContainer"><div class="row-fluid">';
foreach($myposts as $post) :
setup_postdata($post);
$retour.='<div class="sectionBox span4"><h2>'.the_title("","",false).'</h2><div class="hrule_black"></div></div>'.the_content();
endforeach;
return $retour;
wp_reset_query();
}
add_shortcode("list", "sc_liste");