/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php global $wp_query; $postid = $wp_query->post->ID; echo get_post_meta($postid, 'Your-Custom-Field', true); wp_reset_query(); ?>