워드 프레스 3.2를 사용하고 있으며 다음과 같은 쿼리 게시물을 수행했습니다.
<?php query_posts("posts_per_page=1post=type&page=post_parent=10");?>
그런 다음이 질문을 한이 게시물의 날짜를 에코하려고합니다.
<?php echo the_date(); ?>
그것은 게시물의 제목과 발췌 및 영구 링크를 제공하지만 날짜는 없습니다. 문제가 무엇이라고 생각하십니까? 나는 그것이 매우 창피하다고 확신합니다.
비디오 페이지의 템플릿 파일에있는 코드는 다음과 같습니다.
<?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>
여기에 쿼리를 루프에 넣으려고합니다.
<?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 ()는 작동하지 않지만 the_title () 및 기타 함수는 작동했습니다. 그건 그렇고 이것이 내 쿼리를 the_post ()로 변경했는데 내가 원하지 않는 것이 아닙니다. 루프 위에서 한 것처럼 최신 비디오를 쿼리하고 싶습니다.
그건 그렇고 나는 페이지의 앞부분에서 the_date 함수를 사용했고 효과가있었습니다. 그게 문제가 될 수 있습니까? 여기에 문제가있는 코드가 있습니다.
<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>