bbPress1::callback_sticky_status( int $status )
Translate the topic sticky status type from bbPress 1.x numerics to WordPress’s strings.
Description Description
Parameters Parameters
- $status
-
(Required) bbPress 1.x numeric forum type
Return Return
(string) WordPress safe
Source Source
File: includes/admin/converters/bbPress1.php
public function callback_sticky_status( $status = 0 ) { switch ( $status ) { case 2 : $status = 'super-sticky'; // bbPress Super Sticky 'topic_sticky = 2' break; case 1 : $status = 'sticky'; // bbPress Sticky 'topic_sticky = 1' break; case 0 : default : $status = 'normal'; // bbPress Normal Topic 'topic_sticky = 0' break; } return $status; }