我有这个代码可以很好地将一个类别的帖子拉到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;
?>
我知道这有点远,但希望有人可以帮助一个卑微的前端设计师:)
答案 0 :(得分: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;
?>