昨夜からこれに固執しており、ワードプレスの「仕事」セクションに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(); ?>