views:

150

answers:

2

I just started out with WordPress and I'm having some problems with the custom fields. Here's the code from functions.php

add_post_meta($post_id, 'Post Thumbnail', $post_thumb, true) or update_post_meta($post_id, 'Post Thumbnail', $post_thumb);
add_post_meta($post_id, 'Project URL', $url, true) or update_post_meta($post_id, 'Project URL', $url);
add_post_meta($post_id, 'Project Thumbnail', $thumb, true) or update_post_meta($post_id, 'Project Thumbnail', $thumb);

The problem is that they show up when I try to create a new post like so:

alt text

The other problem is that they don't even work, only if I publish the post, go back and readd each field. Is there any way to hide the fields to only show the "Add new custom field:" part? Thank you!

+1  A: 

If end users don't need to edit them you can hide custom fields starting naming them with an underscore ('_'). see: http://codex.wordpress.org/Function_Reference/add_post_meta#Making_a_.22Hidden.22_Custom_Field

btw, I think it's better to avoid inserting spaces within custom fields keys.

achairapart
Users need to edit them, but I want them visible only in the dropdown.
Norbert
A: 

The following will help you create custom meta boxes:

http://farinspace.com/wordpress-meta-box-next-level/

farinspace