Changeset 55881 for trunk/src/wp-admin/includes/class-custom-background.php
- Timestamp:
- 06/05/2023 09:03:38 PM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-custom-background.php
r55412 r55881 64 64 */ 65 65 public function init() { 66 $page = add_theme_page( __( 'Background' ), __( 'Background' ), 'edit_theme_options', 'custom-background', array( $this, 'admin_page' ) ); 66 $page = add_theme_page( 67 _x( 'Background', 'custom background' ), 68 _x( 'Background', 'custom background' ), 69 'edit_theme_options', 70 'custom-background', 71 array( $this, 'admin_page' ) 72 ); 73 67 74 if ( ! $page ) { 68 75 return;
Note: See TracChangeset
for help on using the changeset viewer.