As a last item. I was hoping to add a shortcode in the editor. Perhaps a plugin? Ive done a few of those. How would I code a plugin where all I want to do is display the EVT_modified value somewhere on the page?
I asked if you wanted to display the value on the event editor itself or the front end output and your answer is yes, ok but to which one?
If you are troubleshooting locally and just want to include it on the front end you could just include the_modified_date() within your single.php template file.
Or you could just hook into one of the hooks within EE to do it, like so:
add_action('AHEE_event_details_after_the_content', 'tw_ee_output_evt_modified');
function tw_ee_output_evt_modified(){
echo 'Modified: '. the_modified_date();
}
Is that what you are looking for?
Viewing 7 reply threads
The support post ‘EVT_modified values’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.