-1

我有这段代码可以很好地将帖子从一个类别拉到wordpress的页面上:

<?php
query_posts('cat=28');
while (have_posts()) : the_post();
the_title();
the_content();
endwhile;
?>

我想要做的是向标题和内容添加一个 CSS 类。我对 PHP 知之甚少,但也许这可以解释我想要做什么。

<?php
    query_posts('cat=28');
    while (have_posts()) : the_post();
    <div class="title-class">the_title();</div>
    <div class="content-class">the_content();</div>
    endwhile;
    ?>

我知道这很遥远,但希望有人可以帮助一个低级的前端设计师:)

4

1 回答 1

5

像这样使用:

<?php
    query_posts('cat=28');
    while (have_posts()) : the_post();
?>
    <div class="title-class"><?php the_title(); ?></div>
    <div class="content-class"><?php the_content(); ?></div>
<?php
    endwhile;
?>

或者

<?php
    query_posts('cat=28');
    while (have_posts()) : the_post();
    echo '<div class="title-class">'.the_title().'</div>';
    echo '<div class="content-class">'.the_content().'</div>';
    endwhile;
?>
于 2013-08-26T10:50:07.943 回答