wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_ajax_update_welcome_panel › WordPress Function
Seit3.1.0
Veraltetn/v
› wp_ajax_update_welcome_panel ( Keine Parameter )
Definiert in: |
|
Codex: |
Handles updating whether to display the welcome panel via AJAX.
Ähnliche Funktionen: wp_ajax_update_theme, wp_welcome_panel, wp_ajax_update_plugin, wp_ajax_update_widget, wp_ajax_date_format
Quellcode
function wp_ajax_update_welcome_panel() { check_ajax_referer( 'welcome-panel-nonce', 'welcomepanelnonce' ); if ( ! current_user_can( 'edit_theme_options' ) ) { wp_die( -1 ); } update_user_meta( get_current_user_id(), 'show_welcome_panel', empty( $_POST['visible'] ) ? 0 : 1 ); wp_die( 1 ); }