I would try something like this:
function bg_image_topic_titlearea() {
if ( ! function_exists( \'bbp_get_topic_id\' ) ) {
return false;
}
if ( ! $letztezifferimgs = bbp_get_topic_id() ) {
return false;
}
$letztezifferimgs = substr( $letztezifferimgs, - 1 );
// switch ...
return true;
}
我建议检查以确保函数调用(
bbp_get_topic_id();
) 检索主题ID的步骤已存在。
我建议检查是否确实有从函数调用接收到的值来检索主题ID。
不确定为什么需要使用substr();
, 但一旦你知道你已经收到了一个主题ID,就执行这个操作。
然后执行switch
.
我还建议在switch语句中放置一个“默认情况”。
Example of a "default case":
default:
// do something...
break;