Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter hozomeen

    (@hozomeen)

    @pbp_editor: i can find that in the page source code but i can’t find it in any of my php files…any ideas?

    @rooodini:
    search.php

    <?php get_header(); ?>
    
    	<div id="content" class="col span-8">
    		<div class="col last span-6 nudge-2">
    			<h4 class="ver small">Search results</h4>
    		</div>
    
    		<?php if (have_posts()) : ?>
    			<?php while (have_posts()) : the_post(); ?>
    				<div class="post">
    					<div class="col span-2">
    						<ul class="nav">
    							<!--<li><?php the_time('F j, Y'); ?></li>-->
    							<li>In <?php the_category(', '); ?></li>
    
    							<!-- Uncomment if you want support for tags -->
    							<!-- <li>Tagged as <?php the_tags( '', ', ', ''); ?></li> -->
    
    							<!--<li><?php comments_number('No comments yet','One comment','% comments'); ?></li>-->
    						</ul>
    					</div>
    
    					<div class="post-content col last span-6">
    						<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
    						<?php the_excerpt('Continue reading...'); ?>
    					</div>
    				</div>
    			<?php endwhile; ?>
    
    			<ul class="navigation">
    				<li class="left"><?php next_posts_link('&larr; Older Entries') ?></li>
    				<li class="right"><?php previous_posts_link('Newer Entries &rarr;') ?></li>
    			</ul>
    
    			<?php else : ?>
    
    				<h3>Not Found</h2>
    				<p>Sorry, but you are looking for something that isn't here.</p>
    
    			<?php endif; ?>
    	</div>
    
    	<hr />
    
    	<?php get_sidebar(); ?>
    
    	<?php get_footer(); ?>

    Thread Starter hozomeen

    (@hozomeen)

    onejozef.com/wordpress

    Thread Starter hozomeen

    (@hozomeen)

    Thanks!

    Thread Starter hozomeen

    (@hozomeen)

    yep had wp-cache. deactivated it and everything is working great. thanks lindsayanng!

    Thread Starter hozomeen

    (@hozomeen)

    nope, I’ve tried reloading.

Viewing 5 replies - 1 through 5 (of 5 total)