用WordPress打造PHP CMS系统
我想很多人都在想怎样用WordPress做CMS网站吧,只是 WordPress 不像 PHP CMS 做得那样傻瓜,对 WordPress 不熟悉的人可能有点难度,用下面方法你可以将分类作为栏目。
调用分类日志的代码:
<?php $posts = get_posts( “category=4&numberposts=10″ ); ?>
<?php if( $posts ) : ?>
<ul><?php foreach( $posts as $post ) : setup_postdata( $post ); ?>
<li>
<a href=”<?php the_permalink() ?>” rel=”bookmark” title=”<?php the_title(); ?>”><?php the_title(); ?></a>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>



