如何在Wordpress中允许/调用多种帖子类型

时间:2018-09-14 08:32:27

标签: php wordpress

我是编码方面的新手。您能帮我这个我从jetpack获得的代码吗?

function allow_my_post_types($allowed_post_types) {
$allowed_post_types[] = ‘wpdmpro’;

return $allowed_post_types;

}
add_filter( ‘rest_api_allowed_post_types’, ‘allow_my_post_types’ );

上面的代码运行正常。我允许“ wpdmpro”

我想致电多种职位类型。我想包括“ dwqa问题”和“主题”。如果我刚刚创建的代码有误,请帮助我,因为添加了这两种帖子类型后,它无法正常工作。

function allow_my_post_types($allowed_post_types) {
$allowed_post_types[] = ‘wpdmpro’,’topic’,’dwqa-question’;
return $allowed_post_types;
}
add_filter( ‘rest_api_allowed_post_types’, ‘allow_my_post_types’ );

非常感谢能帮助您的人。我只是在自己学习。谢谢。

0 个答案:

没有答案