获取wp_Query中包含“ACF”(高级自定义字段)列的所有字段

时间:2014-04-22 作者:Matthias Max

使用wp\\u query检索帖子时,如何使循环包含acf字段?

    $args = array( \'post_type\' => $postTypes, 
                   \'posts_per_page\' => $numPosts, 
                   \'offset\' => $offset,
                   \'meta_query\' => $filterArgs );

$loop = new WP_Query( $args );
$postTypes是我预先填充的数组,包含“post”、“page”等我需要的任何内容。

循环将只包含“标准”WP列,如post\\U内容等。

1 个回复
最合适的回答,由SO网友:Steven Jones 整理而成

循环实际上不包含任何内容。

它确实包括一些方法,以便轻松输出数据,例如the_title(), 这是在调用时完成的the_post()

然后,在循环中,您可以使用get\\u the\\u ID()和get\\u post\\u meta()来获取自定义字段(包括ACF字段)。

因此,如果您已从该查询中检索到所需的帖子,则可以执行以下操作:

<?php while($loop->have_posts()) : $loop->the_post(); ?>   
   <h2><?php the_title(); ?></h2>  
   <?php the_content(); ?>
   <p>My Custom Field: <?php echo get_post_meta(get_the_ID(),\'my-custom-field\', true); ?>
<?php endwhile; wp_reset_postdata(); ?>
希望这有帮助。

结束

相关推荐

Query date in wordpress loop

我目前有一个名为“事件”的自定义帖子类型。我根据这里的教程创建了这个http://tatiyants.com/how-to-use-wordpress-custom-post-types-to-add-events-to-your-site/. 我想查询日期,只显示日期即将到来的帖子,而不是过去的帖子。$event_date >= time然而,在教程中,他使用一个短代码显示结果。我正在尝试将其转换为标准wp循环,以便在索引中显示它。php。他在其短代码函数中使用以下内容:add_shortcode

获取wp_Query中包含“ACF”(高级自定义字段)列的所有字段 - 小码农CODE - 行之有效找到问题解决它

获取wp_Query中包含“ACF”(高级自定义字段)列的所有字段

时间:2014-04-22 作者:Matthias Max

使用wp\\u query检索帖子时,如何使循环包含acf字段?

    $args = array( \'post_type\' => $postTypes, 
                   \'posts_per_page\' => $numPosts, 
                   \'offset\' => $offset,
                   \'meta_query\' => $filterArgs );

$loop = new WP_Query( $args );
$postTypes是我预先填充的数组,包含“post”、“page”等我需要的任何内容。

循环将只包含“标准”WP列,如post\\U内容等。

1 个回复
最合适的回答,由SO网友:Steven Jones 整理而成

循环实际上不包含任何内容。

它确实包括一些方法,以便轻松输出数据,例如the_title(), 这是在调用时完成的the_post()

然后,在循环中,您可以使用get\\u the\\u ID()和get\\u post\\u meta()来获取自定义字段(包括ACF字段)。

因此,如果您已从该查询中检索到所需的帖子,则可以执行以下操作:

<?php while($loop->have_posts()) : $loop->the_post(); ?>   
   <h2><?php the_title(); ?></h2>  
   <?php the_content(); ?>
   <p>My Custom Field: <?php echo get_post_meta(get_the_ID(),\'my-custom-field\', true); ?>
<?php endwhile; wp_reset_postdata(); ?>
希望这有帮助。

相关推荐

Increase offset while looping

我正在编写一个自定义帖子插件,它将自定义帖子分组显示为选项卡。每组4个岗位。是否可以编写一个偏移量随每次循环而增加的查询?因此,结果将是:-第一个查询显示从1到4的帖子-第二个查询显示从5到8的帖子-第三个查询显示从9到12的帖子等。 <div class=\"official-matters-tabs\"> <?php $args = array(\'post_type\' => \'official-matters\', \'showp