Wordpress 3.2 kullanıyorum ve böyle bir sorgu gönderdim:
<?php query_posts("posts_per_page=1post=type&page=post_parent=10");?>
Sonra bu şekilde sorguladığım bu yazının tarihini yankılamaya çalışıyorum.
<?php echo the_date(); ?>
Bana yazının başlığını ve alıntıyı ve kalıcı bağlantıyı veriyor ancak tarih yok. Problemin ne olduğunu düşünüyorsun. Eminim oldukça utanç verici bir şey.
İşte video sayfası için şablon dosyamdaki kod:
<?php query_posts("posts_per_page=1post=type&page=post_parent=10");?>
<h2>Recent Video</h2>
<h3 class="date"><?php echo the_date(); ?></h3>
<p><strong><?php echo the_title(); ?></strong><?php echo the_excerpt(); ?></p>
<p><a href="<?php echo the_permalink(); ?>" class="more2">Watch Now</a></p>
Burada bir döngüde sorgu koymak çalışın:
<?php query_posts("posts_per_page=1post=type&page=post_parent=10");?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h2>Recent Video</h2>
<h3 class="date"><?php echo the_date(); ?></h3>
<p><strong><?php echo the_title(); ?></strong><?php echo the_excerpt(); ?></p>
<p><a href="<?php echo the_permalink(); ?>" class="more2">Watch Now</a></p>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
the_date () işe yaramadı, ancak the_title () ve diğer işlevler çalıştı. Bu arada sorgumu istediğim şey değil the_post () olarak değiştirdi. Döngünün üstünde yaptığım gibi en son videoyu sorgulamak istiyorum.
Bu arada sayfanın başlarında the_date işlevini kullandım ve çalıştı. Sorun bu olabilir mi? Kod ile ilgili bir sorun vardı önce.
<div id="col75" class="firstcol">
<iframe id="video" src="http://www.youtube.com/embed/videoseries?list=<?php print get_post_meta($post->ID,"playlist_id", true); ?>" width='560' height='350' frameborder="0"></iframe>
<div id="col25">
<h2><?php echo get_post_meta($post->ID,"speaker", true); ?></h2>
<h3 class="date"><?php echo the_date(); ?></h3>