mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
25 lines
423 B
PHP
25 lines
423 B
PHP
|
<?php
|
||
|
|
||
|
global $SMTheme;
|
||
|
|
||
|
get_header();
|
||
|
|
||
|
?>
|
||
|
<h1 class='page-title'><?php echo sprintf($SMTheme->_('searchresults'),get_search_query()); ?></h1>
|
||
|
<?php
|
||
|
|
||
|
if (!have_posts()) { ?>
|
||
|
<div class="entry">
|
||
|
<p><?php echo $SMTheme->_( 'nothingfound' )?></p>
|
||
|
</div>
|
||
|
<?php }
|
||
|
|
||
|
get_template_part('theloop');
|
||
|
|
||
|
?>
|
||
|
|
||
|
<?php get_template_part('navigation'); ?>
|
||
|
|
||
|
<?php
|
||
|
get_footer();
|
||
|
?>
|