Skip to content
Snippets Groups Projects
Commit d3250d88 authored by Erick Hitter's avatar Erick Hitter
Browse files

Obey site's date and time format settings in the default template.

parent 64ac85e6
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
?> ?>
<div <?php post_class(); ?>> <div <?php post_class(); ?>>
<h1><?php the_title(); ?></h1> <h1><?php the_title(); ?></h1>
<p>by <?php the_author(); ?> | <?php the_time( 'F j, Y g:i a' ); ?></p> <p>by <?php the_author(); ?> | <?php the_time( get_option( 'date_format' ) . ' ' . get_option( 'time_format' ) ); ?></p>
<?php <?php
if( is_attachment() && wp_attachment_is_image() ) if( is_attachment() && wp_attachment_is_image() )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment