[ Index ] |
PHP Cross Reference of WordPress |
[Summary view] [Print] [Text view]
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 wp_reset_vars( array( 'action' ) ); 12 13 if ( isset( $_GET['updated'] ) && isset( $_GET['page'] ) ) { 14 // For back-compat with plugins that don't use the Settings API and just set updated=1 in the redirect. 15 add_settings_error( 'general', 'settings_updated', __( 'Settings saved.' ), 'success' ); 16 } 17 18 settings_errors();
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Nov 21 01:00:03 2024 | Cross-referenced by PHPXref 0.7.1 |