SimplePress5::callback_sticky_status( int $status )

Translate the topic sticky status type from Simple:Press v5.x numeric’s to WordPress’s strings.

Description

Parameters

$status

(Required) Simple:Press v5.x numeric forum type

Return

(string) WordPress safe

Source

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

505
506
507
508
509
510
511
512
513
514
515
516
517
public function callback_sticky_status( $status = 0 ) {
    switch ( $status ) {
        case 1 :
            $status = 'sticky';       // Simple:Press Sticky 'topic_sticky = 1'
            break;
 
        case 0  :
        default :
            $status = 'normal';       // Simple:Press Normal Topic '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.