woof_print_html_type_options_{type}
Eklenti ayarlar sayfasındaki Ayarlar sekmesinde ayarlar bloğunu çizmek için tüm uzantılar tarafından kullanılır
Örnek:
add_action('woof_print_html_type_options_' . $this->html_type, array($this, 'woof_print_html_type_options'), 10, 1);
//settings page hook
public function woof_print_html_type_options()
{
global $WOOF;
if($WOOF){
echo woof()->render_html($this->get_ext_path() . 'views/options.php', array(
'key' => $this->html_type,
"woof_settings" => get_option('woof_settings', array())
)
);
}
}
