SimplePie_Category::__construct() public WP 1.0
Constructor, used to input the data
{} Это метод класса: SimplePie_Category{}
Хуков нет.
Возвращает
null
. Null. Ничего.
Использование
$SimplePie_Category = new SimplePie_Category(); $SimplePie_Category->__construct( $term, $scheme, $label, $type );
- $term(строка/null)
- -
- $scheme(строка/null)
- -
- $label(строка/null)
- -
- $type(строка/null)
- -
Код SimplePie_Category::__construct() SimplePie Category:: construct WP 5.7
public function __construct($term = null, $scheme = null, $label = null, $type = null)
{
$this->term = $term;
$this->scheme = $scheme;
$this->label = $label;
$this->type = $type;
}