- Timestamp:
- 05/29/2013 03:14:38 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/handbook/inc/glossary.php
r10 r16 13 13 add_action( 'wporg_email_changes_for_post_types', array( __CLASS__, 'wporg_email_changes_for_post_types' ) ); 14 14 add_action( 'wporg_handbook_glossary', array( __CLASS__, 'page_content' ) ); 15 add_action( 'manage_glossary_posts_columns', array( __CLASS__, 'manage_glossary_posts_columns' ) ); 15 16 } 16 17 … … 64 65 } 65 66 67 static function manage_glossary_posts_columns( $columns ) { 68 $columns['author'] = __( 'Created by' ); 69 return $columns; 70 } 71 66 72 static function post_type_link( $link, $post ) { 67 73 if ( $post->post_type !== 'glossary' )
Note: See TracChangeset
for help on using the changeset viewer.