9 lines
301 B
PHP
9 lines
301 B
PHP
|
<?php get_header(); ?>
|
||
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
||
|
<h2><?php the_title(); ?></h2>
|
||
|
<p><?php the_content(__('(more...)')); ?></p>
|
||
|
<?php endwhile; else: ?>
|
||
|
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
|
||
|
<?php endif; ?>
|
||
|
<?php get_footer(); ?>
|