vBulletin::callback_sticky_status( int $status )

Translate the topic sticky status type from vBulletin v4.x numeric’s to WordPress’s strings.

Description

Parameters

$status

(Required) vBulletin v4.x numeric forum type

Return

(string) WordPress safe

Source

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

618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
public function callback_sticky_status( $status = 0 ) {
    switch ( $status ) {
        case 2 :
            $status = 'super-sticky'; // vBulletin Super Sticky 'sticky = 2'
            break;
 
        case 1 :
            $status = 'sticky';       // vBulletin Sticky 'sticky = 1'
            break;
 
        case 0  :
        default :
            $status = 'normal';       // vBulletin Normal Topic 'sticky = 0'
            break;
    }
    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.