Skip to content

Commit

Permalink
Set Webcomic Media box priority to high.
Browse files Browse the repository at this point in the history
This might help those users that aren't totally clear on how to add
media to their webcomic post.
  • Loading branch information
Michael Sisk committed Jan 26, 2013
1 parent 1bfed41 commit 1329f3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion -/php/posts.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function admin_footer() {
*/ */
public function add_meta_boxes() { public function add_meta_boxes() {
foreach ( array_keys( self::$config[ 'collections' ] ) as $k ) { foreach ( array_keys( self::$config[ 'collections' ] ) as $k ) {
add_meta_box( 'webcomic-media', __( 'Webcomic Media', 'webcomic' ), array( $this, 'media' ), $k, 'side', 'default' ); add_meta_box( 'webcomic-media', __( 'Webcomic Media', 'webcomic' ), array( $this, 'media' ), $k, 'side', 'high' );
add_meta_box( 'webcomic-commerce', __( 'Webcomic Commerce', 'webcomic' ), array( $this, 'commerce' ), $k, 'normal', 'high' ); add_meta_box( 'webcomic-commerce', __( 'Webcomic Commerce', 'webcomic' ), array( $this, 'commerce' ), $k, 'normal', 'high' );
add_meta_box( 'webcomic-transcripts', __( 'Webcomic Transcripts', 'webcomic' ), array( $this, 'transcripts' ), $k, 'normal', 'high' ); add_meta_box( 'webcomic-transcripts', __( 'Webcomic Transcripts', 'webcomic' ), array( $this, 'transcripts' ), $k, 'normal', 'high' );
} }
Expand Down

0 comments on commit 1329f3b

Please sign in to comment.