2013-06-11 66 views
0

我一直在這個從昨晚開始,不能'弄清楚爲什麼我的WordPress的「工作」部分不顯示the_title。另外,我的「工作」頁面設置爲「工作頁面」模板。另外,我將如何去在這個頁面上有多個帖子?謝謝!WordPress不能正確顯示和多個帖子

http://www.listentotheway.com

<?php 

/* 

Template Name: Work Page 

*/ 


get_header(); ?> 

<p> This is the work.php file </p> 

<?php 

$args = array('post_type'=>'work'); 

$the_query = new WP_Query($args); 

    ?> 

<?php if (have_posts()) : while ($the_query->have_posts()) : $the_query->the_post(); ?> 

<h3><a href="<?php the_permalink() ;?>"<?php the_title(); ?></h3> 
<?php the_field('description'); ?> 
<hr> 

<?php endwhile; else: ?> 

<p> customize later </p> 

<?php endif; ?> 

<?php get_footer(); ?> 
+0

嘗試'<?php $ the_query-> the_title(); ?>' –

+0

感謝您的建議。我試過了,但仍然卡住了。 – Waymond

+0

你還需要'if($ the_query-> have_posts())' –

回答

0

總結我的建議至今:

<?php if ($the_query->have_posts()) : 
    while ($the_query->have_posts()) : 
     $the_query->the_post(); ?> 

     <h3><a href="<?php the_permalink() ;?>"<?php the_title(); ?></h3> 
     <?php // the_field('description'); ?> 
     <hr> 

    <?php endwhile; else: ?> 

    <p> customize later </p> 

<?php endif; ?> 

我已經編寫出來的話the_field,有沒有這樣的本地WordPress的功能。試試我的代碼,看看會發生什麼!

+0

感謝您的信任。我將不得不回到原點,因爲它不適合我。當我解決問題時,我會發布我的答案。保重。 – Waymond