commit
32e468a130
|
@ -6,9 +6,15 @@
|
|||
*
|
||||
* @package understrap
|
||||
*/
|
||||
|
||||
$classes = array(
|
||||
'content-no-results-page',
|
||||
'not-found',
|
||||
);
|
||||
|
||||
?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?> class="content-no-results-page not-found">
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class($classes); ?>>
|
||||
|
||||
<header class="page-header">
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
*/
|
||||
?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?> class="content-page-item">
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class('content-page-item'); ?>>
|
||||
|
||||
<header class="entry-header">
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
*/
|
||||
?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?> class="content-search-item">
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class('content-search-item'); ?>>
|
||||
|
||||
<header class="entry-header">
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*/
|
||||
?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?> class="content-single-item">
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class('content-single-item'); ?>>
|
||||
|
||||
<header class="entry-header">
|
||||
|
||||
|
|
Reference in New Issue