我正在尝试在
中使用bp_group_name()if (bp_group_name()!='General') {
//code
}
不是在IF中使用bp_group_name()
的值,而是在页面上显示值。
很抱歉,如果我描述的方式有点偏......
答案 0 :(得分:2)
bp_get_group_name()
?
答案 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)
bp_get_group_name()
http://phpxref.ftwr.co.uk/buddypress/nav.html?_functions/index.html