我有这段代码可以很好地将帖子从一个类别拉到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;
?>
我知道这很遥远,但希望有人可以帮助一个低级的前端设计师:)