0
我一直在這個從昨晚開始,不能'弄清楚爲什麼我的WordPress的「工作」部分不顯示the_title。另外,我的「工作」頁面設置爲「工作頁面」模板。另外,我將如何去在這個頁面上有多個帖子?謝謝!WordPress不能正確顯示和多個帖子
<?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(); ?>
嘗試'<?php $ the_query-> the_title(); ?>' –
感謝您的建議。我試過了,但仍然卡住了。 – Waymond
你還需要'if($ the_query-> have_posts())' –