自昨晚以来,我一直坚持这一点,无法弄清楚为什么我的 wordpress 的“工作”部分没有显示 the_title。另外,我的“工作”页面设置为“工作页面”模板。另外,我将如何在此页面上发布多个帖子?谢谢!
<?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(); ?>