如何在此行中添加“Silver”和“Gold”,我目前的代码仅适用于“Gold”计划中的一些功能我想为“Silver”和“Gold”设置它
$subscription = rcp_get_subscription( get_current_user_id() );
if( $subscription == 'Gold' ) {
// do something here
}
http://docs.restrictcontentpro.com/article/1653-rcpgetsubscription
谢谢。
答案 0 :(得分:0)
你真正想要的是OR而不是AND - 订阅不能同时是白银和黄金。
if( $subscription == 'Gold' || $subscription == 'Silver' ) {
// do something here
}