SimplePress5::callback_status( int $status )
Translate the post status from Simple:Press v5.x numeric’s to WordPress’s strings.
Description
Parameters
- $status
-
(Required) Simple:Press numeric status
Return
(string) WordPress safe
Source
File: bp-forums/admin/converters/SimplePress5.php
public function callback_status( $status = 0 ) {
switch ( $status ) {
case 1 :
$status = 'closed';
break;
case 0 :
default :
$status = 'publish';
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.