使用该值而不是显示它

时间:2010-08-02 17:18:37

标签: php wordpress buddypress

我正在尝试在

中使用bp_group_name()
if (bp_group_name()!='General') {
//code
}

不是在IF中使用bp_group_name()的值,而是在页面上显示值。

很抱歉,如果我描述的方式有点偏......

3 个答案:

答案 0 :(得分:2)

答案 1 :(得分:1)

您必须使用一个返回值而不是回显值的函数。

if (bp_get_group_name() != 'General') 
{
    //code
}

Here's a discussion of using code that's similar to yours and probably trying to do a similar thing.

答案 2 :(得分:0)