Home Forums WoodMart support forum year date in the copyright block

year date in the copyright block

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #707275

    opalamarchuk.01
    Participant

    Good afternoon. How can I make the year date in the copyright block change automatically every year?

    Attachments:
    You must be logged in to view attached files.
    #707324

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    If you want to add a dynamic year in your footer, you can use the below code in function.php:

    function year_shortcode() {
      $year = date('Y');
      return $year;
    }
    add_shortcode('year', 'year_shortcode');

    After placing the above code, you have to use this short code“[year]”inside the “Copyrights text” area, under theme settings >> Footer.

    Best Regards,

Viewing 2 posts - 1 through 2 (of 2 total)