Reputation: 157
I am hoping someone can help with this.
I am a Wordpress newbie, and I have heard about how great Wordpress nowadays.
I have a quick question, how do I add or modify the Post form entry so that I can add more input fields like drop down, checkboxes, or radio buttons to the Post form page.
Any guidance or references that I can look into will be greatly appreciated.
Upvotes: 1
Views: 1938
Reputation: 5166
you can use custom post field for plugin for this purpose download this Here after that you can fetch the input field with
get_post_meta($post->ID,'field name');
Upvotes: 2