TMF
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Fixing WordPress
In reply to: the_excerpt on index.php not workingThis is the whole page:
<?php get_header(); ?> <?php if(is_home() && !is_paged()): ?> <?php include (TEMPLATEPATH . '/featured.php'); ?> <?php endif;?> <!--main content area --> <?php include (TEMPLATEPATH . '/colmnWrapper.php'); ?> <div id="center"> <div class="content"> <h1><a href="<?php bloginfo('rss2_url'); ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/rss.gif" alt="Main Content RSS Feed" title="Main Content RSS Feed" style="float:right;margin: 2px 0 0 5px;" /></a>Other Stuff</h1> <?php query_posts('posts_per_page=10'); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); if( $post->ID == $do_not_duplicate ) continue; update_post_caches($posts); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?> »</a></h2> <p class="postinfo">By <?php the_author_posts_link(); ?> on <?php the_time('M j, Y') ?> in <?php the_category(', ') ?> | <?php comments_popup_link('0 Comments', '1 Comment', '% Comments'); ?><?php edit_post_link('Edit', ' | ', ''); ?></p> <div class="entry"> <!-- Display a thumbnail for the article. Get this from the custom value 'thumbpic'. --> <?php $thumb = get_post_meta($post->ID, "thumbpic", true); if ($thumb != "") { ?> <img src="<?php $values = get_post_custom_values("thumbpic"); echo $values[0]; ?>" alt="<?php the_title(); ?>" class="thumbpic" /> <?php the_excerpt(); ?><br class="clearfloat"/> <?php } else { ?> <?php /* the_content*/ the_excerpt();?><br class="clearfloat"/> <?php } ?> </div> </div> <?php endwhile; endif; ?> <div class="navigation"> <div class="alignleft"> <?php next_posts_link('« Previous Entries') ?> </div> <div class="alignright"> <?php previous_posts_link('Next Entries »') ?> </div> </div> <!-- closes center content --> </div> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Permalinks not working on index.phpHi,
Am interested what you find out as am having the exact same problem. index.php is the only page it doesn’t work on.
TaniaForum: Fixing WordPress
In reply to: the_excerpt on index.php not working<?php the_excerpt(); ?>
Is also not working.
Viewing 3 replies - 1 through 3 (of 3 total)