Garip bir hata en iyi bu sayfada gösterilen var http://www.zoecormier.com/freelance/
'Test Turnitin' adlı makalesinde aşağı kaydırın ve yazı tarih görünmüyor göreceksiniz. ('Çalıntı kelime' olarak adlandırılır) üstünde makale tarihini gösteriyor. Bu iki makale aynı tarih var, ama sadece biri görüntülüyor.
Makale listesi için Code:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php $externalLink = get_post_meta($post->ID, 'external link', true); ?>
<?php $pdfLink = get_post_meta($post->ID, 'pdf link', true); ?>
<ul class="article_index">
<li class="title"><a href="<?php the_permalink() ?>" title="Read <?php the_title(); ?>"><?php the_title(); ?></a></li>
<li class="date"><?php the_date('d.m.y') ?></li>
<li class="publication"><?php echo get_post_meta($post->ID, 'publication', true) ?></li>
<li class="tags"><?php the_tags(' ',' ',' '); ?></li>
<li class="link"><?php if ( !$externalLink ) { } else { ?><a href="<?php echo $externalLink ?>"><img src="<?php echo $baseUrl; ?>images/icon_world.gif" alt="Weblink" title="Weblink" width="16" height="16" border="0" /></a><?php } ?></li>
<li class="pdf"><?php if ( !$pdfLink ) { } else { ?><a href="<?php echo $pdfLink ?>"><img src="<?php echo $baseUrl; ?>images/icon_pdf.gif" alt="View pdf" title="View pdf" height="16" border="0" /></a><?php } ?></li>
</ul>
<?php endwhile; ?>
<?php endif; ?>
Can a kind fellow offer any ideas? Thanks.