无法在我的wordpress网站上获取自定义帖子字段?

时间:2016-03-12 09:34:32

标签: php wordpress wordpress-plugin custom-post-type

我使用自定义帖子字段UI插件创建了一个自定义帖子字段,但是当我尝试使用其slug调用该特定自定义帖子类型时,它不会发生,而是显示博客帖子。登记/> 在这里,我试图得到我的推荐,但它正在显示博客文章。 请参阅以下代码:

        <?php $loop = new WP_Query( array( 'post-type' => 'testimonial', 'orderby' => 'post_id', 'order' => 'ASC' ) ); ?>

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

        <div class="row testimonial">

          <div class="col-sm-2 col-sm-offset-2 col-xs-12" id="testimonial-pic">  

          <?php
            if( has_post_thumbnail() ){ // Check for feature image.
              the_post_thumbnail( array( 200, 200 ) );
            }
          ?>

          </div><!-- col -->

          <div class="col-sm-8">  
              <blockquote>
                <?php the_content(); ?>
                <cite>&mdash; <?php the_title(); ?></cite>
              </blockquote>

          </div><!-- col -->

        </div><!-- testimonial -->

        <?php endwhile; ?>               

我得到的是:

欢迎使用WordPress。这是你的第一篇文章。编辑或删除它,然后开始写作!

- Hello world!

而不是我的推荐。 尝试其他名称没有像what_we_do,Who_are_we ...等工作,而不是推荐。谢谢。

1 个答案:

答案 0 :(得分:0)

它是post_type,带有下划线。 ;)