Archived topic
Custom field in page hero
3 replies · Started by Bernhard on August 3, 2021
Viewing posts 1–4 of 4
Hi there,
You can create a custom shortcode to make that work.
Example:
add_shortcode( 'home_welcome', function() {
ob_start();
echo get_post_meta(get_the_ID(), 'home_welcome', TRUE);
return ob_get_clean();
} );
This php snippet assumes you have a custom field slug of home_welcome. Replace it with the custom field slug if you've named it differently. :D
Great, thank you :)
No problem. :D
This archived topic is closed to new replies.