/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// place following function inside functions.php function get_custom_field_value($szKey, $bPrint = false) { global $post; $szValue = get_post_meta($post->ID, $szKey, true); if ( $bPrint == false ) return $szValue; else echo $szValue; } // use following code to call function after checking that it exists get_custom_field_value('home heading', true); } ?>