i want to reorder stuff in a custom post..
i got the meta box and editor working 2ghter
but currently the editor is above the meta box
and i need it to be the other way around..
This is the code for my meta box:
// adding the meta boxes
add_action("admin_init", "tl_admin_init");
function tl_admin_init(){
add_meta_box("testimonial_description-meta", __('Testimonial Description', 'sagive'), "testimonial_description", "testimonial", "normal", "core");
}
// getting, setting and displaying PROJECT DESCRIPTION meta box
function testimonial_description() {
global $post; // this is a must!
$custom = get_post_custom($post->ID); // this is a must!
$testimonial_description = $custom["testimonial_description"][0];
?>
<textarea name="testimonial_description" style="width: 98%; height: 10em; " /><?php echo $testimonial_description; ?></textarea>
<label><?php _e('Write a Simple 2 Line Description of your client testimonial without html for clean design.', 'sagive'); ?></label>
<?php
}
I tried.. removing the editor and re instating after this function
but i guess thats an over simplistic solution since it doesnt work..
i Removed the editor using this:
/* This will help me get rid of the editor */
function tl_remove_pages_editor(){
remove_post_type_support( 'testimonial', 'editor' );
}
add_action( 'init', 'tl_remove_pages_editor' );
Then added it again using add_post_type_supports...
Help anyone ?