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 26.7
function wpseo_set_ignore() {
if ( ! current_user_can( 'manage_options' ) ) {
exit( '-1' );
}
check_ajax_referer( 'wpseo-ignore' );
if ( ! isset( $_POST['option'] ) || ! is_string( $_POST['option'] ) ) {
exit( '-1' );
}
$ignore_key = sanitize_text_field( wp_unslash( $_POST['option'] ) );
WPSEO_Options::set( 'ignore_' . $ignore_key, true );
exit( '1' );
}