WP 电子商务中的 query_posts() 相当于什么

发布于 2024-11-07 08:46:09 字数 417 浏览 1 评论 0原文

我正在为我的 worpress 博客使用 WP 电子商务。我想在我的模板中显示特定产品。我是这样写代码的。

          query_posts('p=186'); 
          while (wpsc_have_products()) :  wpsc_the_product(); 
                 echo wpsc_the_product_title();
                       ................
                       ................
          endwhile;

但它不起作用。我认为问题出在 query_posts() 上。 query_posts 是否有任何等效函数或如何在 WP 电子商务中显示带有 id 的产品。

I am using WP e-commerce for my worpress blog. I want to display a particular product in my template. I wrote the code like this.

          query_posts('p=186'); 
          while (wpsc_have_products()) :  wpsc_the_product(); 
                 echo wpsc_the_product_title();
                       ................
                       ................
          endwhile;

But it is not working. I think the problem is with query_posts(). Is there any equivalent function for query_posts or How can I display a product with it's id in WP e-commerce.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吃颗糖壮壮胆 2024-11-14 08:46:09

看看它是否适合你:

$wpsc_query = new WPSC_query("category_id=3");

See if it works for you:

$wpsc_query = new WPSC_query("category_id=3");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文