WordPress Themes Development Question:

Explain me what are the custom fields in wordpress? How to display it?

Tweet Share WhatsApp

Answer:

We will add extra information to our post by using custom fields.Custom Fields are a form of meta-data that allows us to store arbitrary information with each WordPress post.
To display the Custom Fields for each post, use the the_meta() template tag.
To fetch meta values use the get_post_meta() function.
For example we use custom fields:-

<?php echo get_post_meta($post->ID, ‘key’, true); ?>

Download WordPress Theme Development PDF Read All 109 WordPress Theme Development Questions
Previous QuestionNext Question
Tell me is there any other CMS better WordPress?Tell me what are the plugins you can use to create contact form in WordPress?