好消息,坏消息。。
Good news其背后的逻辑非常简单。基本上,将表单封装在一个简单的if语句中。
if(condition){
/*Your form here*/
}
else {echo \'<h4>You need to be a premium account to post comments</h4>\';}
Bad News您需要在另一个用户角色中编码。这通常可以通过插件完成。大多数插件提供关于如何检查用户的用户角色的文档。
如果插件有如下功能
get_user_role();
你只要把它作为你的条件。看起来像这样:
if(get_user_role() == \'premium\'){
/*Your form here*/
}
else {echo \'<h4>You need to be a premium account to post comments</h4>\';}