How to display custom meta box in wordpress?
Display custom meta box in wordpress
First generate meta box code and then add this code where you want to display –
<?php $custom_meta_data = get_post_meta( get_the_ID(),'custom_meta_box_id_' ,true); ?> <?php echo $custom_meta_data; ?> // here custom_meta_box_id_ is the meta box field id
POST COMMENTS