WordPress用户特定的可下载内容

时间:2018-12-11 15:31:57

标签: wordpress

我想在我的网站上创建一个部分,其中包含特定于用户的可下载内容。

我创建了一个自定义帖子类型,其中包含一个用于上传可下载文件的字段和一个用于选择用户的字段(使用“高级自定义字段”),但是我不清楚如何过滤出我希望允许看到的用户下载。

1 个答案:

答案 0 :(得分:0)

您可以执行以下操作:

    <?php

    $user = get_field('user'); // user is the name of your field ACF
    $current_user = wp_get_current_user(); // the current user

    if ( $current_user->ID == $user ) {
        echo 'show custom post here ! ';
    } 
    ?>