author | ymh <ymh.work@gmail.com> |
Tue, 27 Sep 2022 16:37:53 +0200 | |
changeset 19 | 3d72ae0968f4 |
parent 16 | a86126ab1dd4 |
child 21 | 48c4eec2b7e6 |
permissions | -rw-r--r-- |
0 | 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'] ) ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
0
diff
changeset
|
14 |
// For back-compat with plugins that don't use the Settings API and just set updated=1 in the redirect. |
16 | 15 |
add_settings_error( 'general', 'settings_updated', __( 'Settings saved.' ), 'success' ); |
0 | 16 |
} |
17 |
||
18 |
settings_errors(); |