显示每个类别的帖子,除了 'x'
Show posts from every category except 'x'
我似乎找不到关于 fishpig magento wordpress 与 getPosts() 方法集成的任何文档。
我只需要在排除单个类别的情况下调用此方法。
我希望它是这样的
$id = 123;
$this->getPosts(array('category!=' => $id));
非常感谢任何帮助,谢谢!
实现此目的的最简单方法是使用适用于 WordPress 的 Ultimate Category Excluder 插件:
https://wordpress.org/plugins/ultimate-category-excluder/
这将允许您将属于特定类别的产品排除在您的主要博客供稿中之外。要使其在集成到 Magento 中时起作用,您将需要以下附加扩展:
http://fishpig.co.uk/magento/wordpress-integration/ultimate-category-excluder/
在安装此附加扩展之前确保 Magento 中的 WordPress 集成模块是最新的。
我似乎找不到关于 fishpig magento wordpress 与 getPosts() 方法集成的任何文档。
我只需要在排除单个类别的情况下调用此方法。
我希望它是这样的
$id = 123;
$this->getPosts(array('category!=' => $id));
非常感谢任何帮助,谢谢!
实现此目的的最简单方法是使用适用于 WordPress 的 Ultimate Category Excluder 插件:
https://wordpress.org/plugins/ultimate-category-excluder/
这将允许您将属于特定类别的产品排除在您的主要博客供稿中之外。要使其在集成到 Magento 中时起作用,您将需要以下附加扩展:
http://fishpig.co.uk/magento/wordpress-integration/ultimate-category-excluder/
在安装此附加扩展之前确保 Magento 中的 WordPress 集成模块是最新的。