Support » Plugin: Websimon Tables » How to display "last modified" date for a table?

  • Hello,
    I have a price table where the prices are constantly updated and I need to display the “last modified/updated” date for the table. I searched for this on the internet, but I only found information on how to do this for posts or pages. I added this:

    <?php $u_time = get_the_time(‘U’);
    $u_modified_time = get_the_modified_time(‘U’);
    if ($u_modified_time >= $u_time + 86400) {
    echo “Last modified: “;
    the_modified_time(‘j M Y’);
    echo ” at “;
    the_modified_time(‘H:i’);
    echo “. “; } ?>

    in the shortcode.php page of the plugin, but it displays the date of the last update of the page where the table is, not the date when the table has been updated. Does anybody have some ideas on how to do this?
    Thank you.

    http://wordpress.org/plugins/websimon-tables/

  • The topic ‘How to display "last modified" date for a table?’ is closed to new replies.