No Excerpt Function
-
I’m using the theme ‘multiflex 5.2’ and i’ve been unable to get any sort of excerpt function to work from the outset. I’ve got ‘Advanced Excerpt’ plug-in but it doesn’t work either – not surprising if the function is not there in the first place. Here is the main part of the code from the index page…
// <h1<?php if (get_post_meta($post->ID, ‘icon’, true) ) { ?> class=”<?php echo get_post_meta($post->ID, “icon”, $single = true); ?>”<?php } ?>>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h1>
<p>Posted on <?php the_time(‘F jS, Y’) ?> <!– by <?php the_author() ?> –></p><?php if (is_search()) { the_excerpt(); } else { the_content(‘Read the rest of this entry »’); } ?>
<p><?php the_tags(‘Tags: ‘, ‘, ‘, ‘
‘); ?> Filed under <?php the_category(‘, ‘) ?> | <?php edit_post_link(‘Edit’, ”, ‘ | ‘); ?> <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?></p><?php comments_template(); ?> //
Any ideas?
- The topic ‘No Excerpt Function’ is closed to new replies.