如何让2个标签提要显示在1个页面上?

时间:2010-10-05 作者:xer0x

我希望在我的网站中创建一个如下所示的页面:

Tag/Category: News
新闻发布a
新闻发布b
新闻发布c

Tag/Category: Events
事件a
事件b
事件c

我是Wordpress的新手。我可能没有wordpress的行话来正确地问这个问题。谢谢你的帮助。

1 个回复
最合适的回答,由SO网友:abrudtkuhl 整理而成

最好使用以下代码创建页面模板。此外,您还需要决定是否使用标记或类别。下面的代码假定您使用的是类别。

<div class="news">
<?php
  //The Query
  wp_query(\'showposts=5&category_name=News\');

  //The Loop
  if ( have_posts() ) : while ( have_posts() ) : the_post();
  ?> 
    <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
    <div class="post_content">
         <?php the_excerpt(); ?>    
    </div>
  <?
  endwhile; 
  endif;

  //Reset Query
  wp_reset_query();

  ?>
</div>

<div class="events">
  <?php 
    //The Query
    wp_query(\'showposts=5&category_name=Events\');

    //The Loop
    if ( have_posts() ) : while ( have_posts() ) : the_post();
    ?> 
        <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
        <div class="post_content">
             <?php the_excerpt(); ?>    
        </div>
    <?
    endwhile; 
    endif;

    //Reset Query
    wp_reset_query();
  ?>
</div>

结束

相关推荐

WordPress删除wp_List_Categories中最后一项的分隔符

我正在尝试删除最后一个分隔符(通常是<br/> 标记,但我将其从wp\\u list\\u categories的最后一个链接更改为“/”)。基本上我想要这个:类别1//类别2//类别3//看起来像这样:类别1//类别2//类别3以下是我当前使用的代码:<?php $cat_array = array(); $args = array( \'author\' => get_the_author_meta(\'id\'),&#x