__( 'Blog Full Column' ), ) ); } add_filter('image_size_names_choose', 'ascribe_blog_image_sizes'); /* * * Put excerpt meta-box before editor * */ function ascribe_move_excerpt_meta_box( $post ) { if ( in_array( $post->post_type, array( 'post' ) ) ) { remove_meta_box( 'postexcerpt', $post->post_type, 'normal' ); echo "

Excerpt

"; post_excerpt_meta_box( $post ); echo ""; } } add_action( 'edit_form_after_title', 'ascribe_move_excerpt_meta_box' ); ?>