Hi.
I wonder how to display a 'hello use the search form for a research' in search.php.
I want this message to display only on a first page (not on search results either no-results page).
Any ideas using no cookies?
Hi.
I wonder how to display a 'hello use the search form for a research' in search.php.
I want this message to display only on a first page (not on search results either no-results page).
Any ideas using no cookies?
I tried:
<?php
if ( is_page() && !is_search() ) {?>
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
<?php } else { ?>
<?php if (is_search() && is_page('xxx') ) { ?>
xxxxxxxxxx
<?php } elseif ( is_search() && is_page('yyy') ) { ?>
yyyy
<?php } else { ?>
zzzzzzzzz
<?php } ?>
<?php } ?><?php
if ( !is_search() ) {?>
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
<?php } else { ?>
<?php if (is_search() && is_page('xxx') ) { ?>
xxxxxxxxxx
<?php } elseif ( is_search() && is_page('yyy') ) { ?>
yyyy
<?php } else { ?>
zzzzzzzzz
<?php } ?>
<?php } ?>
this code doesn't seem to work as well.
You must log in to post.