undeterminederror
BANNED
- Mar 31, 2008
- 630
- 462
i need search results pages to be cached in database of wordpress, is there a way ?
$s_content='<div id="content">';
<?php if (have_posts()) : ?>
$s_content.='next tags for template blablabla';
<?php while (have_posts()) : the_post(); ?>
//here another tags for conent (for titles dates etc)
$s_content.=get_the_content();
//here another tags for conent
<?php endwhile; ?>
<?php endif; ?>