WordPress分类列表的调用方法
刚接触到wordpress时就听朋友说到用wordpress来配搭网站而不单单局限于博客。wordpress本身就不利于做大站。见得最多的还是做些企业站。老外也有很多的企业站主题。做wordpress来搭建企业站对其SEO来说真是事半功倍。下面说下两种列表方式。1:普通文章列表,2:图片文章列表
普通文章列表调用方法:

  1. <?php $posts = get_posts("category=3&numberposts=10"); ?>
  2. <?php if( $posts ) : ?>
  3. <ul><?php foreach( $posts as $post ) : setup_postdata( $post ); ?>
  4. <li>
  5. <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
  6. </li>
  7. <?php endforeach; ?>
  8. </ul>
  9. <?php endif; ?>

Read the rest of this entry »

, , ,