Skip to content

Commit a827908

Browse files
Merge pull request #142 from MachoThemes/master
TRT improvements
2 parents 511628a + b1b1917 commit a827908

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

template-parts/content-grid-small.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010
?>
11-
<article id="post-<?php the_ID(); ?>" class="<?php post_class('post-content post-grid-small col-md-6'); ?>">
11+
<article id="post-<?php the_ID(); ?>" <?php post_class('post-content post-grid-small col-md-6'); ?> >
1212
<header class="entry-header nolist">
1313
<?php
1414
$category = get_the_category();

template-parts/content-grid-wide.php

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

1010
?>
1111
<div class="row">
12-
<article id="post-<?php the_ID(); ?>" class="<?php post_class( 'post-content post-grid-wide col-md-12' ); ?>">
12+
<article id="post-<?php the_ID(); ?>" <?php post_class( 'post-content post-grid-wide col-md-12' ); ?>>
1313
<header class="entry-header nolist">
1414
<?php
1515
$category = get_the_category();

template-parts/content-search.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
?>
1111

1212
<div class="row">
13-
<article id="post-<?php the_ID(); ?>" class="<?php post_class('post-content post-grid-wide col-md-12'); ?>">
13+
<article id="post-<?php the_ID(); ?>" <?php post_class('post-content post-grid-wide col-md-12'); ?>>
1414
<header class="entry-header">
1515
<?php
1616
$image = '<img class="wp-post-image" alt="" src="' . get_template_directory_uri() . '/assets/images/placeholder_wide.jpg" />';

template-parts/content.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
$left_side = get_theme_mod( 'post_author_left_side', false );
1414

1515
?>
16-
<article id="post-<?php the_ID(); ?>" class="<?php post_class('post-content post-grid-wide'); ?>">
16+
<article id="post-<?php the_ID(); ?>" <?php post_class('post-content post-grid-wide'); ?>>
1717
<header class="entry-header nolist">
1818
<?php
1919
$category = get_the_category();

0 commit comments

Comments
 (0)