wordpressトップページで文章の異なるスタイルを呼び出す方法
1649 ワード
php
$count = 1;
$display_categories = array(1);
foreach ($display_categories as $category) {
?>
$category")?>
while (have_posts()) :the_post(); ?>
if($count==1){ ?>
class="news-first">class="date pull-right">
class="news-excerpt">echo mb_strimwidth(strip_tags(apply_filters('the_content',
$post->post_content)), 0, 200,"……"); ?>
else{ ?>
class="news-item">
class="date pull-right">
echo mb_strimwidth(get_the_title(), 0, 40, '…'); ?>
$count++;endwhile; ?>
wordpressのテーマを書く時出会った小さい問題の解決方法のノート
転載先:https://www.cnblogs.com/dripseo/p/5548902.html