开发者

wordpress category with products on home page

I want to display one category with products on home page. I'开发者_C百科m using wp-ecommerce plugin. How can I do that?


This is the page you need: http://codex.wordpress.org/Function_Reference/query_posts

//The Query query_posts('cat=4');

//The Loop if ( have_posts() ) : while ( have_posts() ) : the_post(); .. do stuff endwhile; else: .. endif;

//Reset Query wp_reset_query();

?>

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜