开发者

wordpress category with products on home page

开发者 https://www.devze.com 2023-01-22 11:50 出处:网络
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_

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

精彩评论

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