Forum Replies Created

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

    (@40daydetox)

    Hi,

    Thanks for the heads up on that plugin. It looks really good. If my hosting company can’t sort it out I may well go down that route! Thanks.

    Thread Starter 40DayDetox

    (@40daydetox)

    Hey,

    Thanks. I was hoping for a more concrete answer before I started to dabble with the code!

    I’m suprised it’s not an easy option in WordPress admin setion as I imagine an imaged logo is a very common requirement for most websites.

    But thanks for the tips.. I might well have to dabble with the code at some point.

    Ali

    Thread Starter 40DayDetox

    (@40daydetox)

    thanks!

    Thread Starter 40DayDetox

    (@40daydetox)

    <?php get_header(); ?>
    
    <div id="main" class="content">
    
    <div id="left_side">
    
    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>
    
    <div class="post">
    <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a>
    </h2>
    
    <div class="entry">	
    
    <div class="feature">
    <?php the_post_thumbnail(); ?>
    </div>	
    
    <?php the_content('Read the rest of this entry &raquo;'); ?>
    
    <?php the_content(); ?>	
    
    <?php wp_link_pages('before=<p>&after=</p>&next_or_number=number&pagelink=page %'); ?>
    </div>
    
    <div class="clearboth">&nbsp;</div>
    
     <div class="info"> <span class="time"> <?php the_time('F jS, Y') ?>  </span><br/>
     <span class="category">  <?php the_category(', ') ?> </span> <br/>
    <span class="tags">  <?php the_tags() ?></span>
    </div>
    
    </div>
    
    <div class="post">
    
    <?php comments_template(); ?>
    
    </div>
    
    	<?php endwhile; else : ?>
    
    <div class="post">
    		<h2>Not Found</h2>
    		<p>Sorry, but you are looking for something that isn't here.</p>
    		<?php include (TEMPLATEPATH . "/searchform.php"); ?>
    </div>
    <?php endif; ?>
    
    </div>
    
    <?php get_footer(); ?>

    I took the: <?php the_content('Read the rest of this entry &raquo;'); ?> out and it seems to be working!

    Thread Starter 40DayDetox

    (@40daydetox)

    Thank you very much! 🙂

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