Home › Forums › Pro Support › Output Custom Field in Div Class › Reply To: Output Custom Field in Div Class
July 17, 2018 at 7:55 pm
#5284
Keymaster
You’d have to set up multiple variables.
So instead of:
$meta = get_post_meta( get_the_ID(), '_custom_meta_key_name_here', true );
You’d do:
$meta = get_post_meta( get_the_ID(), '_custom_meta_key_name_here', true );
$another_meta = get_post_meta( get_the_ID(), '_another_custom_meta_key_name_here', true );
$one_more = get_post_meta( get_the_ID(), '_one_more_custom_meta_key_name_here', true );