hello world!
23 Febbraio 2018

Current Year and Symbols Shortcode

How shortcode work -> WordPress CODEX (documentation)

Pay attention

Shortcode don't work in all WordPress position!
For any problem write a comment here or in WordPress directory support forum.

Year

[y]
2023

With format:

[y format="y"]
23
[y format="Y"]
2023

With offset + or - also in combination with format:

[y offset="+5"]
2028
[y offset="+5"]
2028
[y format="y" offset="-5"]
18

Month

[m]
Dicembre

With month format:

[m format="F"]
Dicembre
[m format="m"]
12
[m format="M"]
Dic
[m format="n"]
12

With offset + or - also in combination with format:

[m offset="+5"]
Maggio
[m format="F" offset="+5"]
Maggio
[m format="m" offset="-5"]
07
[m format="M" offset="+5"]
Mag
[m format="n" offset="-5"]
7

Day

[d]
08

With day format:

[d format="d"]
08
[d format="D"]
Ven
[d format="j"]
8
[d format="N"]
5
[d format="S"]
th
[d format="w"]
5
[d format="z"]
341
[d format="t"]
31

With offset + or - also in combination with format:

[d offset="+5"]
13
[d format="d" offset="+5"]
13
[d format="D" offset="-5"]
Dom
[d format="j" offset="+5"]
13
[d format="N" offset="-5"]
7
[d format="S" offset="+5"]
th
[d format="w" offset="-5"]
0
[d format="z" offset="+5"]
346
[d format="t" offset="-5"]
31

Current Date

Current date with custom format and offset.

[dmy]
08/12/2023

With offset:

[dmy offset="+1year"]
08/12/2024
[dmy offset="+1day"]
09/12/2023
[dmy format="d F Y"]
08 Dicembre 2023
[dmy offset="+1year" format="d F Y"]
08 Dicembre 2024

©2023 - copyright symbol and current year

[cy]
©2023

With year format:

[cy format="y"]
©23
[cy format="Y"]
©2023

©2003-2023 - copyright symbol with first copyright year - current year

[cyy year="2003" format="Y"]
©2003-2023
[cyy year="03" format="y"]
©03-23

Copyright 2003-2023 - copyright text with first copyright year - current year

[cyyl year="2003" format="Y"]
Copyright 2003-2023
[cyyl year="03" format="y"]
Copyright 03-23

©Copyright 2003-2023 - copyright symbol + text with first copyright year - current year

[cyyls year="2003" format="Y"]
Copyright 03-23
[cyyls year="03" format="y"]
Copyright 03-23

© symbol

[c]
©

Copyright text

[cc]
Copyright

® symbol

[t]
®

™ symbol

[tm]

℠ symbol

[sm]

User IP

[show_user_ip]
3.238.180.174

Format Attribute for Year
For shortcode with year you can choose format with attribute format="". It support "Y" (es.2019) or "y" (es.19). Default format without attribute is "Y".
You must enter year attribute in the same format.

Example
©03-23 ©03-19
©2003-2023 ©2003-2019

Format Attribute for Month
For shortcode with month you can choose format with attribute format="". It support "F" - "m" - "M" - "n".

Format Attribute for Day
For shortcode with day you can choose format with attribute format="". It support "D" - "d" - "j" - "N"

Format Attribute for current date
All php date function attributes.

Offset Attribute
For day shortcode 08 you can add offset with attribute offset="". It support + or -.
For month shortcode Dicembre you can add offset with attribute offset="". It support + or -.
For year shortcode 2023 you can add offset with attribute offset="". It support + or -.
For current date shortcode 08/12/2023 you can add offset with attribute offset="". It support + or - in standard php date format, for ex. + 1 year or - 1 day.

Example
09 2023
Gennaio 2 (if current month is January)
2024 2 (if current day is 1)
08/12/2024 01/01/2023

Potete scaricare il plugin direttamente dalla directory di WordPress.