[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-admin/ -> options-head.php (source)

   1  <?php
   2  /**
   3   * WordPress Options Header.
   4   *
   5   * Displays updated message, if updated variable is part of the URL query.
   6   *
   7   * @package WordPress
   8   * @subpackage Administration
   9   */
  10  
  11  // Don't load directly.
  12  if ( ! defined( 'ABSPATH' ) ) {
  13      die( '-1' );
  14  }
  15  
  16  $action = ! empty( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : '';
  17  
  18  if ( isset( $_GET['updated'] ) && isset( $_GET['page'] ) ) {
  19      // For back-compat with plugins that don't use the Settings API and just set updated=1 in the redirect.
  20      add_settings_error( 'general', 'settings_updated', __( 'Settings saved.' ), 'success' );
  21  }
  22  
  23  settings_errors();


Generated : Sat Feb 1 08:20:01 2025 Cross-referenced by PHPXref