n件ごとに記事をDivでくくりたい。
-
下記のようなコードをfunctions.php に書いて記事を呼び出しているのですが、
例えば、記事3件ごとにDivで囲みたいのですがどうすればいいでしょうか。出力のイメージは次の通りです。
<div ID=”ABCD”>
記事1
記事2
記事3
</div><div ID=”ABCD”>
記事4
記事5
記事6
</div><div ID=”ABCD”>
記事7
記事8
記事9
</div>よろしくお願いします。
function printe($atts, $content = null) { extract(shortcode_atts(array( "num" => '5', "tag" => '', "cat" => '' ), $atts)); global $post; $myposts = get_posts("tag='.$tag&numberposts=50&orderby=title&order=ASC&category=$cat"); $retour=' <p>'; if(count($myposts)){ foreach($myposts as $post) : setup_postdata($post); $retour.='<a href="'.get_permalink().'">'.the_title("","",false).'</a>'.get_the_content().''; endforeach; $retour.='</p>'; }else{ $retour = ''; } return $retour; } add_shortcode("print", "printe");
2件の返信を表示中 - 1 - 2件目 (全2件中)
2件の返信を表示中 - 1 - 2件目 (全2件中)
- トピック「n件ごとに記事をDivでくくりたい。」には新たに返信することはできません。