阻止用户根据功能查看自定义帖子类型

时间:2014-02-13 20:18:13

标签: php wordpress capability

我在WordPress上有一个自定义帖子类型,来自外部插件,我想根据用户功能有条件地拒绝显示此帖子类型的内容。 伪代码比1000字更好解释:

if (!current_user_can('my_custom_capability') && $post->post_type == 'my_custom_post_type')
then
deny showing post content;

我必须使用哪种过滤器?

我一直在寻找几个小时,但我发现只有: capability for custom post typesthis,这似乎是最接近的,但我仍然无法弄清楚如何使用它们。我只需要检查现有的自定义帖子类型

0 个答案:

没有答案