Yoast_Input_Select::output_html()publicYoast 1.0

Print the rendered view.

Метод класса: Yoast_Input_Select{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$Yoast_Input_Select = new Yoast_Input_Select();
$Yoast_Input_Select->output_html();

Код Yoast_Input_Select::output_html() Yoast 22.4

public function output_html() {
	// Extract it, because we want each value accessible via a variable instead of accessing it as an array.
	extract( $this->get_select_values() );

	require WPSEO_PATH . 'admin/views/form/select.php';
}