【问题标题】:List products by their author - Woocommerce Wordpress按作者列出产品 - Woocommerce Wordpress
【发布时间】:2014-05-07 07:20:36
【问题描述】:

我不知道你能不能帮助我,但我需要你的帮助。

我已经尝试了很多方法来在我的网站上列出作者的产品,但是我失败了。

我想要这样当人们点击作者的个人资料时,他们可以看到作者的产品。

如果有人知道要写这段代码,请帮助我。

提前致谢。

【问题讨论】:

标签: wordpress list woocommerce author


【解决方案1】:

WooCommerce 中的产品只是具有自定义帖子类型的帖子。只要您指定作者权限(示例取自here):

add_action('init', 'wpse_74054_add_author_woocommerce', 999 );

function wpse_74054_add_author_woocommerce() {
    add_post_type_support( 'product', 'author' );
}

然后列出作者的帖子很简单,使用如下代码:

$args = array(
    'author'     =>  $author_id,
    'post_type'  => 'product'
);

$author_posts = get_posts( $args );

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2014-09-20
    • 1970-01-01
    • 2013-09-29
    • 1970-01-01
    • 1970-01-01
    • 2018-01-17
    • 2018-01-22
    相关资源
    最近更新 更多