Site logo

Archived topic

Custom field in page hero

3 replies · Started by Bernhard on August 3, 2021

Viewing posts 1–4 of 4

Hello,
I'm actually displaying on my homepage the [tagline] "Tourist in Rome" as indicated here.

Now I want to substitute this with a custom field [home_welcome]. How can I do this?

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.