Highlight admin menu when editing configs and add abbreviation to outcome

This commit is contained in:
Brian Miyaji
2014-01-03 01:25:49 +11:00
parent 6321b2713f
commit f0b0bae8bc
6 changed files with 80 additions and 27 deletions

View File

@@ -12,6 +12,7 @@ function sp_outcome_cpt_init() {
'show_in_menu' => false,
'hierarchical' => false,
'supports' => array( 'title', 'page-attributes' ),
'register_meta_box_cb' => 'sp_outcome_meta_init',
'capability_type' => 'sp_config'
);
register_post_type( 'sp_outcome', $args );
@@ -21,9 +22,25 @@ add_action( 'init', 'sp_outcome_cpt_init' );
function sp_outcome_edit_columns() {
$columns = array(
'cb' => '<input type="checkbox" />',
'title' => __( 'Label', 'sportspress' )
'title' => __( 'Label', 'sportspress' ),
'sp_abbreviation' => __( 'Abbreviation', 'sportspress' )
);
return $columns;
}
add_filter( 'manage_edit-sp_outcome_columns', 'sp_outcome_edit_columns' );
function sp_outcome_meta_init() {
add_meta_box( 'sp_detailsdiv', __( 'Details', 'sportspress' ), 'sp_outcome_details_meta', 'sp_outcome', 'normal', 'high' );
}
function sp_outcome_details_meta( $post ) {
$abbreviation = get_post_meta( $post->ID, 'sp_abbreviation', true );
?>
<p><strong><?php _e( 'Abbreviation', 'sportspress' ); ?></strong></p>
<p>
<input name="sp_abbreviation" type="text" size="4" id="sp_abbreviation" value="<?php echo $abbreviation; ?>" placeholder="<?php echo get_the_title( $post->ID ); ?>">
</p>
<?php
sp_nonce();
}
?>