Last active
December 18, 2015 17:49
-
-
Save kovaldn/5820746 to your computer and use it in GitHub Desktop.
Wordpress: date, comments
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- | |
| Wordpress Date | |
| http://codex.wordpress.org/Formatting_Date_and_Time | |
| Для вывода даты публикации можно использовать две функции the_date() и the_time(). | |
| Первая у меня почему-то глючила, так что я предпочитаю вторую. | |
| Число | |
| d 01–31 | |
| j 1–31 | |
| ДЕНЬ НЕДЕЛИ | |
| l Sunday – Saturday | |
| D Mon – Sun | |
| МЕСЯЦ | |
| m 01–12 | |
| n 1–12 | |
| F January – December | |
| M Jan - Dec | |
| ГОД | |
| Y 1999, 2003 | |
| y 99, 03 | |
| ПОЛНОЕ ВРЕМЯ | |
| c ISO 8601 2004-02-12T15:19:21+00:00 | |
| r RFC 2822 Thu, 21 Dec 2000 16:01:07 +0200 | |
| --> | |
| <span class="create-date">Опубликовано <?php the_time('Y.m.d') ?></span> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment