wpseo_set_ignore()
Function used to remove the admin notices for several purposes, dies on exit.
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
wpseo_set_ignore();
Код wpseo_set_ignore() wpseo set ignore Yoast 24.1
function wpseo_set_ignore() { if ( ! current_user_can( 'manage_options' ) ) { die( '-1' ); } check_ajax_referer( 'wpseo-ignore' ); if ( ! isset( $_POST['option'] ) || ! is_string( $_POST['option'] ) ) { die( '-1' ); } $ignore_key = sanitize_text_field( wp_unslash( $_POST['option'] ) ); WPSEO_Options::set( 'ignore_' . $ignore_key, true ); die( '1' ); }