Skip to content

Commit c00fb4b

Browse files
author
Roni Laukkarinen
committed
Remove precise time from templates
1 parent 1509653 commit c00fb4b

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* The current version of the theme.
1212
*/
13-
define( 'AIR_VERSION', '1.4.6' );
13+
define( 'AIR_VERSION', '1.4.7' );
1414

1515
/**
1616
* Allow Gravity Forms to hide labels to add placeholders

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "air",
3-
"version": "1.4.6",
3+
"version": "1.4.7",
44
"description": "A minimalist WordPress starter theme.",
55
"author": "Digitoimisto Dude Oy ([email protected])",
66
"devDependencies": {

style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Theme URI: https://github.com/digitoimistodude/air
44
Author: Digitoimisto Dude Oy
55
Author URI: https://www.dude.fi
66
Description: A minimalist WordPress starter theme.
7-
Version: 1.4.6
7+
Version: 1.4.7
88
License: GNU General Public License v2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010
Text Domain: air
@@ -20,5 +20,5 @@ Tags:
2020
*
2121
* @author Roni Laukkarinen
2222
* @since 28.01.2016
23-
* @version 24.05.2016
23+
* @version 31.05.2016
2424
*/

template-parts/content-search.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<?php if ( 'post' === get_post_type() ) : ?>
2121
<div class="entry-meta">
22-
<p class="entry-time"><time datetime="<?php the_time('c'); ?>"><?php the_time('l') ?>na, <?php the_time('j.') ?> <?php the_time('F') ?>ta <?php the_time('Y') ?> kello <?php the_time('G:i') ?></time></p>
22+
<p class="entry-time"><time datetime="<?php the_time('c'); ?>"><?php the_time('l') ?>, <?php the_time('j.') ?><?php the_time('n.') ?><?php the_time('Y') ?></time></p>
2323
</div><!-- .entry-meta -->
2424
<?php endif; ?>
2525
</header><!-- .entry-header -->

template-parts/content-single.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
if ( 'post' === get_post_type() ) : ?>
2424
<div class="entry-meta">
25-
<p class="entry-time"><time datetime="<?php the_time('c'); ?>"><?php the_time('l') ?>na, <?php the_time('j.') ?> <?php the_time('F') ?>ta <?php the_time('Y') ?> kello <?php the_time('G:i') ?></time></p>
25+
<p class="entry-time"><time datetime="<?php the_time('c'); ?>"><?php the_time('l') ?>, <?php the_time('j.') ?><?php the_time('n.') ?><?php the_time('Y') ?></time></p>
2626
</div><!-- .entry-meta -->
2727
<?php
2828
endif; ?>

template-parts/content.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
if ( 'post' === get_post_type() ) : ?>
2424
<div class="entry-meta">
25-
<p class="entry-time"><time datetime="<?php the_time('c'); ?>"><?php the_time('l') ?>na, <?php the_time('j.') ?> <?php the_time('F') ?>ta <?php the_time('Y') ?> kello <?php the_time('G:i') ?></time></p>
25+
<p class="entry-time"><time datetime="<?php the_time('c'); ?>"><?php the_time('l') ?>, <?php the_time('j.') ?><?php the_time('n.') ?><?php the_time('Y') ?></time></p>
2626
</div><!-- .entry-meta -->
2727
<?php
2828
endif; ?>

0 commit comments

Comments
 (0)