I had an issue with WordPress posts_type , the custom fields which are normally at the bottom of each post page were missing.
At the top of your WordPress post page you will see a small grey box that says.. Screen Options. Click this option and then it will provide you with a drop down menu.
I ceck the custom field, it apears but after i Publish The page it disepear again..
I disable all the plugin but no sucess... the same...
How i register my custom post type...
/* ------------ Post Type Stiri -----------*/
register_post_type('stiri', array( 'label' => 'Stiri','description' => '','public' => true,'show_ui' => true,'show_in_menu' => true,'capability_type' => 'post','hierarchical' => true,
'rewrite' => array('slug' => ''),
'query_var' => true,'has_archive' => true,
'menu_position' => 5,'supports' => array('title','editor','custom-fields','category', 'post_tag',),
'labels' => array (
'name' => 'Stiri',
'singular_name' => 'Stire',
'menu_name' => 'Stiri',
'add_new' => 'Add Stire',
'add_new_item' => 'Add New Stire',
'edit' => 'Edit',
'edit_item' => 'Edit Stire',
'new_item' => 'New Stire',
'view' => 'View Stire',
'view_item' => 'View Stire',
'search_items' => 'Search Stiri',
'not_found' => 'No Stiri Found',
'not_found_in_trash' => 'No Stiri Found in Trash',
'parent' => 'Parent Stire',
),) );
register_taxonomy("stire","stiri", array("hierarchical" => true, "label" => "Cat Stiri", 'show_ui' => true, 'query_var' => true, "singular_label" => "stire", "rewrite" => true , 'with_front' => true));
If annyone have a solution please post here