WordPress Themes Development Question:
Download Questions PDF

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

WordPress Theme Development Interview Question
WordPress Theme Development Interview Question

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 Interview Questions And Answers PDF

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?