Kunena2::callback_forum_type( int $status )

Translate the forum type from Kunena v2.x numeric’s to WordPress’s strings.

Description

Parameters

$status

(Required) Kunena v2.x numeric forum type

Return

(string) WordPress safe

Source

File: bp-forums/admin/converters/Kunena2.php

520
521
522
523
524
525
526
527
public function callback_forum_type( $status = 0 ) {
    if ( $status == 0 ) {
        $status = 'category';
    } else {
        $status = 'forum';
    }
    return $status;
}

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.