WPSEO_Installation::set_first_install_options
Sets the options on first install for showing the installation notice and disabling of the settings pages.
Метод класса: WPSEO_Installation{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$WPSEO_Installation = new WPSEO_Installation(); $WPSEO_Installation->set_first_install_options();
Код WPSEO_Installation::set_first_install_options() WPSEO Installation::set first install options Yoast 27.3
public function set_first_install_options() {
$options = get_option( 'wpseo' );
$options['show_onboarding_notice'] = true;
$options['first_activated_on'] = time();
$options['first_activated_by'] = get_current_user_id();
update_option( 'wpseo', $options );
}