implement more fields wordpress plugin -


I've got this custom field plug-in -

Now I'm just thinking that How to implement fields, I have installed the plugin, created the field, and added to the field content on any post, but nothing is being displayed at the front end ...

I used to Looking for and finding a document on how to do it is not capable.

How do I get to display the plains at the front end?

At this point, the sooner I use more field plugins, the more basic There are tasks that you can do whatever you want with custom areas.

A custom field can be assigned to a post - you can do it through a post editor.

Then use the function to access these custom field values ​​in any of your php files syntax (should be done within the loop):

  & lt ;; Php $ meta_value = get_post_meta ($ post-> id, 'custom_field_name', is true); ? & Gt;   

Or, if you want to print it without specifying custom field value, do this:

   ID, 'custom_field_name', true)); ? & Gt;   

The only thing you need to change is 'custom_field_name'; Simply substitute the name of the custom field (key) that you want to access.

Comments