0

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

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(); ?>
4

1 回答 1

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 功能。试试我的代码看看会发生什么!

于 2013-06-11T21:21:27.973 回答