Possible to edit custom date field and display?

Editing the theme is a good way to get this done, if it’s a theme with updates from someone else I would make a child theme to prevent your changes being overwritten: https://developer.wordpress.org/themes/advanced-topics/child-themes/ Another option is to make a plugin that utilizes a shortcode that allows any WordPress editor to just plug that shortcode into … Read more

How can get the last post date of the user?

In your sample code the $latest_posts is an instance of WP_Query class. If you want to get the latest post’s date, you should do this: $latest_posts = new WP_Query( $args ); $last_date=””; if ( $latest_posts->have_posts() ) { $latest_posts->the_post(); $last_date = get_the_date(); } return $last_date;

Don’t update modified post date when user add a product review or comment?

WooCommerce seems to update the ‘last modified’ value of a product on every change. If you want to take a look at the source code, go to woocommerce\includes\data-stores\class-wc-product-data-store-cpt.php and check the function update. This solution seems to work, however it could be improved to make sure it doesn’t mess up with anything else. Basically checks … Read more