This is probably a stupid question, but I am setting up a finnish WordPress installation. The “custom fields” section in the “write post” section is gone; I gather it is hidden by default.
That is a great step, but my finnish is a bit rusty, it’s my first WP install, and I can’t for the life of me find the switch to turn it on.
Where do I do this?
Edit: Martin shows a way to do this on a per-post basis, thanks for that. In my case, it would be useful to always show custom fields, so extra brownie points for anybody who can give me a hint on how to do that. I can’t find any documentation on this.
Per default some meta boxes are hidden. These boxes are stored in an array which you can find in
wp-admin/includes/template.php#get_hidden_meta_boxes()
. There is a filter, and therefore a chance for a plugin:As you can see, it is quite simple to enable more fields.
Go to edit/create a page or post in wp-admin at the top is a “Screen Options” panel link, here you can enable custom fields for that particular page or post.
The number of metaboxes displayed by default was reduced in 3.1. If you want to change the default for all users you can hook into the
default_hidden_meta_boxes
filter.