Is there any way to add custom field keys to the dropdown of the custom fields on the "add new post" page without adding the fields like in the screenshot below?
views:
182answers:
2
+2
A:
Check add_meta_box
(It allows plugin developers to add sections to the Write Post, Write Page, and Write Link editing pages. ):
http://codex.wordpress.org/Function_Reference/add_meta_box
Or these plugins:
- Custom Field Template: http://wordpress.org/extend/plugins/custom-field-template/
- Flutter: http://flutter.freshout.us/ (this one may be what you are looking for)
- Magic Fields: http://wordpress.org/extend/plugins/magic-fields/
Source: http://sltaylor.co.uk/blog/control-your-own-wordpress-custom-fields/
XaviEsteve
2010-05-12 22:06:17
A:
Adding Meta Boxes is definitely the way to go. The following should help you:
farinspace
2010-05-17 21:51:03