WP 电子商务中的 query_posts() 相当于什么
我正在为我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看它是否适合你:
See if it works for you: