Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <?php
  2. add_action('after_setup_theme', 'mytheme_init');
  3. function mytheme_init() {
  4. // Check if already saved the activation date & time
  5. // to prevent over-writing if user deactive & active theme
  6. // multiple time
  7. if(!get_option('mytheme_activation_time', false)){
  8. // Generate Current Date & Time in MySQL Date Time Formate
  9. $activation_datetime = current_time( 'mysql' );
  10. // Save it in `wp_options` table
  11. add_option('mytheme_activation_time', $activation_datetime);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement