Procházet zdrojové kódy

Merge pull request #334 from pjv/date-on-single-fix

4-digit day of the month on single.php
Eddie Machado před 13 roky
rodič
revize
87a7a4eb0a
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      single.php

+ 1 - 1
single.php

@@ -14,7 +14,7 @@
 							
 									<h1 class="entry-title single-title" itemprop="headline"><?php the_title(); ?></h1>
                   <p class="byline vcard"><?php
-                    printf(__('Posted <time class="updated" datetime="%1$s" pubdate>%2$s</time> by <span class="author">%3$s</span> <span class="amp">&amp;</span> filed under %4$s.', 'bonestheme'), get_the_time('Y-m-j'), get_the_time(__('F js, Y', 'bonestheme')), bones_get_the_author_posts_link(), get_the_category_list(', '));
+                    printf(__('Posted <time class="updated" datetime="%1$s" pubdate>%2$s</time> by <span class="author">%3$s</span> <span class="amp">&amp;</span> filed under %4$s.', 'bonestheme'), get_the_time('Y-m-j'), get_the_time(get_option('date_format')), bones_get_the_author_posts_link(), get_the_category_list(', '));
                   ?></p>
 						
 								</header> <!-- end article header -->