- Timestamp:
- 08/22/2019 07:07:57 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-custom-image-header.php
r45654 r45881 76 76 } 77 77 78 add_action( "admin_print_scripts- $page", array( $this, 'js_includes' ) );79 add_action( "admin_print_styles- $page", array( $this, 'css_includes' ) );80 add_action( "admin_head- $page", array( $this, 'help' ) );81 add_action( "admin_head- $page", array( $this, 'take_action' ), 50 );82 add_action( "admin_head- $page", array( $this, 'js' ), 50 );78 add_action( "admin_print_scripts-{$page}", array( $this, 'js_includes' ) ); 79 add_action( "admin_print_styles-{$page}", array( $this, 'css_includes' ) ); 80 add_action( "admin_head-{$page}", array( $this, 'help' ) ); 81 add_action( "admin_head-{$page}", array( $this, 'take_action' ), 50 ); 82 add_action( "admin_head-{$page}", array( $this, 'js' ), 50 ); 83 83 if ( $this->admin_header_callback ) { 84 add_action( "admin_head- $page", $this->admin_header_callback, 51 );84 add_action( "admin_head-{$page}", $this->admin_header_callback, 51 ); 85 85 } 86 86 }
Note: See TracChangeset
for help on using the changeset viewer.