• Hi,
    I want to display a separate date for medically reviewed for my post beside medically reviewed section. Can you please help me with that? Like how can I show date for medically reviewed?
    For your reference I have attached screenshot below

    https://prnt.sc/tn2C89VkfB8O

Viewing 1 replies (of 1 total)
  • Hi there,

    WordPress does not provide meta fields for that data. So you would need to add your own custom fields to store that data, either using the core Custom Fields, or a plugin like ACF or MetaBox.

    Once you have that setup and you have your custom developed code to display that data you can hook it into your template eg.

    
    add_action('generate_after_entry_title', function() {
        if ( is_single() ) {
            // do your custom thing here
        }
    });
Viewing 1 replies (of 1 total)
  • The topic ‘Need help with medically review date’ is closed to new replies.