Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter gabetaviano

    (@godsmac)

    I asked the theme developer, and they haven’t had time to look at the issue. Seems like an issue with the following code.

    <ul id="archives">
    	<?php while(have_posts()) : the_post(); ?>
    	<?php $thumb = get_post_meta($post->ID, 'thumbnail', $single = true); ?>
    
    		<li>
    		<?php if($thumb !== '') { ?>
    		<a title="<?php echo the_title(); ?>" href="<?php the_permalink() ?>"><img class="thumbarch" src="<?php echo $thumb; ?>" alt="<?php echo the_title(); ?>" /></a>
    		<?php } else { ?>
    		<a title="<?php echo the_title(); ?>" href="<?php the_permalink() ?>"><img  src="<?php bloginfo('template_url'); ?>/images/default.gif" alt="<?php echo the_title(); ?>" /></a>
    		<?php } ?>
    		</li>
    
    		<?php endwhile; ?>
    		</ul>

    Thread Starter gabetaviano

    (@godsmac)

    Below is my .htaccess file at the moment. I actually haven’t changed it since I started working on the site.

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

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