4 replies
  • WEB DESIGN
  • |
Hey guys

What code do I install , so my copy write date, (in the footer), changes each year automatically? In wordpress.

&

where does it get placed within?

Thanx

P.S. = If you could respond with the actual code that I need to use would be awesome!
#change #code #date
  • Profile picture of the author iamsuneel
    Try this.

    Google for "javascript code to change year"

    Computing[dot]net link has the perfect solution.

    But, if a visitor's machine shows year 1990 now in his system clock, then the JS code too
    shows the same.

    This is because JS runs on local browser.

    I am unable to paste the code because I am a newbie and I am not allowed to do that. Thanks.
    {{ DiscussionBoard.errors[2612644].message }}
  • Profile picture of the author NetMan
    Originally Posted by tailrunner View Post

    Hey guys

    What code do I install , so my copy write date, (in the footer), changes each year automatically? In wordpress.

    &

    where does it get placed within?

    Thanx

    P.S. = If you could respond with the actual code that I need to use would be awesome!
    You can use this script in the footer.php file

    Code:
    <script language="javascript">
    <!--
    today=new Date();
    y0=today.getFullYear();
    document.write('Copyright &copy; 2010 - '+y0+' - yoursite.com, all rights reserved.');
    //-->
    </script>
    Best regards,

    Andre Foisy
    Signature

    <!---
    IGNORANCE is not an excuse anymore, all you need is Automate Kit!
    ---/>

    {{ DiscussionBoard.errors[2612716].message }}
  • Profile picture of the author tailrunner
    Excellent, thanks all.
    I just couldn't remember the code ... must of been a brain freeze or something,
    {{ DiscussionBoard.errors[2615196].message }}
    • Profile picture of the author NetMan
      Originally Posted by tailrunner View Post

      Excellent, thanks all.
      I just couldn't remember the code ... must of been a brain freeze or something,
      YW just that I'M not "all" but Andre :p
      Signature

      <!---
      IGNORANCE is not an excuse anymore, all you need is Automate Kit!
      ---/>

      {{ DiscussionBoard.errors[2615601].message }}

Trending Topics