【发布时间】:2016-09-28 00:11:28
【问题描述】:
我在一个基于作者的 woocommerce 商店工作。我尝试做的是只显示作者的帖子,客户的订单链接到产品作者。
这是我目前得到的:
function show_author_posts_only($query) {
global $user_level, $woocommerce, $product;
if($query->is_admin && $user_level < 5) {
global $user_ID;
$query->set('post_author', get_post_field( 'post_author', $product_id ));
$query->set('author', $user_ID);
unset($user_ID);
}
unset($user_level);
return $query;
}
add_filter('pre_get_posts', 'show_author_posts_only');
糟糕的是,我被困在订单部分.. 有人有建议吗?
谢谢。
【问题讨论】:
标签: php wordpress woocommerce