Hi leewills77,
Thanks for your help.
I created the follow shortcode and put it on functions.php, but it doesn't return anything
Code:
//Applications list short-code
function jb_applicant() {
global $wpdb;
$custom_fields = get_post_custom(2171); //2171 is the post_id that I'm trying to gather the data from
$my_custom_field = $custom_fields['my_custom_field'];
foreach ( $my_custom_field as $key => $value )
echo $key . " => " . $value . "<br />";
}
add_shortcode('applicant', 'jb_applicant'); Any idea what could be?
Thanks