Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在使用这个演示文稿时遇到问题,我正在使用 WP E-Commerce(版本 3.8.9.5)。例如,我想要显示的产品页面是这样的:
类别 1 子类别1 产品1 产品 2产品 3 子类别2 产品1 产品2 产品 3类别2 子类别1产品1 产品2 产品 3 子 类别2 产品1 产品 2 产品 3 提前 致谢 。
在 WP e-Commerce 的产品列表页面顶部显示子类别是一件看似完全常识的事情,但 WP e-Commerce 显然没有真正的解决方案。我最终在主题的 WP 电子商务模板文件的顶部创建了一个例程来完成此操作。 要获取产品分配到的类别:
$categories = wp_get_object_terms ($post->ID, 'wpsc_product_category');
查看这篇文章->这里 或 更复杂的文章->这里