"This entry is part…" doubled?
-
Just noticed this. My Search Results shows things like this:
This entry is part 14 of 23 in the series Words
This entry is part 14 of 23 in the series WordsNo, I’m not talking about a system error message like Windows’ infamous “Abort, Retry, Fail?” I’m talking about active cognitive ignoring. This occurred to me as I’ve been using an electronic medical record system called DocuTAP. It has many very, very busy screens, each with […]See, for example:
https://ed-informatics.org/?s=learnability
Not sure why this is occurring, have a fairly plain-vanilla search.php (see below).
Thanks for any thoughts.
<?php get_header(); ?>
<div id=”main”>
<div id=”content”>
<?php if (have_posts()) : ?>
<h2 class=”pagetitle”>Search Results</h2>
<div class=”navigation”>
<div class=”alignleft”>
<?php next_posts_link(‘« Previous Entries’) ?>
</div>
<div class=”alignright”>
<?php previous_posts_link(‘Next Entries »’) ?>
</div>
</div>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class(); ?> id=”post-<?php the_ID(); ?>”><h3 id=”post-<?php the_ID(); ?>”>
” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”>
<?php the_title(); ?>
</h3>
<?php the_time(‘l, F jS, Y’) ?>
<div class=”the-excerpt”>
<?php the_excerpt() ?>
</div>
<div class=”entry-meta”>Posted in
<?php the_category(‘, ‘) ?>
|
<?php edit_post_link(‘Edit’,”,’|‘); ?>
<?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?>
</div>
</div>
<!– end post –>
<?php endwhile; ?>
<div class=”navigation”>
<div class=”alignleft”>
<?php next_posts_link(‘« Previous Entries’) ?>
</div>
<div class=”alignright”>
<?php previous_posts_link(‘Next Entries »’) ?>
</div>
</div>
<?php else : ?>
<h2 class=”center”>Not Found</h2>
<?php get_search_form(); ?>
<?php endif; ?>
</div>
<!– end content –>
</div>
<!– end main div –>
<?php get_footer(); ?>https://www.ads-software.com/extend/plugins/organize-series/
- The topic ‘"This entry is part…" doubled?’ is closed to new replies.