Changeset 12492 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/class-customizations.php
- Timestamp:
- 03/24/2023 05:11:34 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/class-customizations.php
r12489 r12492 64 64 65 65 add_action( 'save_post', array( __NAMESPACE__ . '\Metabox\Release_Confirmation', 'save_post' ) ); 66 add_action( 'save_post', array( __NAMESPACE__ . '\Metabox\Author_Notice', 'save_post' ) ); 66 67 } 67 68 … … 472 473 array( __NAMESPACE__ . '\Metabox\Commits', 'display' ), 473 474 'plugin', 'normal', 'low' 475 ); 476 477 add_meta_box( 478 'plugin-author-notice', 479 __( 'Author Notice (Displayed on the plugins page to Plugin Authors)', 'wporg-plugins' ), 480 array( __NAMESPACE__ . '\Metabox\Author_Notice', 'display' ), 481 'plugin', 'normal', 'high' 474 482 ); 475 483 }
Note: See TracChangeset
for help on using the changeset viewer.