ACF Wordpress按类别和自定义字段获取帖子

时间:2016-09-22 17:49:48

标签: php wordpress

我在Wordpress中遇到ACF问题。我创建了自己的字段enter image description here并创建了自己的插件来显示它,但我不知道如何显示我的所有字段。 现在我有这样的事情:

   wp_reset_postdata();
   $myargs = array (
      'showposts' => 6
   );
   $myquery = new WP_Query($myargs);
     if($myquery->have_posts() ) :
       while($myquery->have_posts() ) : $myquery->the_post();
   ?>
   <p>
     <?php the_title(); ?>
   </p>
   <?php endwhile;
         endif;
         wp_reset_postdata();

这显示了我的所有帖子。我想只显示“Raporty”类别的帖子,我想显示所有自定义字段。

对不起我的英文;)

1 个答案:

答案 0 :(得分:0)

Siema Kubol,

仅显示post_type'raporty'的帖子,将其添加到$myargs

$myargs = array (
      'showposts' => 6,
      'post_type' => 'raporty'
   );

在wp循环中你可以使用例如get_field( 'typ_raportu' )。外循环get_field( 'typ_raportu', post_id_here )