ワードプレスで短いコードを使用してカスタム投稿を印刷しようとしています。投稿の内容を印刷できないことを除いて、すべてが機能しているようです。私のコードは以下です。
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");