• Resolved francoc30

    (@francoc30)


    Hi,
    I want to have a dynamic year on my copyright line in the footer, so that the year always reflects the current year in the footer. How can I do that with this plugin?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    Thanks for contacting us. Unfortunately, We don’t have any widget for dynamic year. But I have a suggestion for you: You may create a short-code in your theme functions by putting below code:

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

    and then use that [year] shortcode in the footer. That will solve your problem.

    Thanks

    Thread Starter francoc30

    (@francoc30)

    Thanks for the quick reply. I can try to create the shortcode. I am not a developer, so may I ask where I should the function (which file). Should I do that in a child theme?

    Thread Starter francoc30

    (@francoc30)

    I managed to figure it out. The code is working, thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Is copyright dynamic year function available?’ is closed to new replies.