gpt4 book ai didi

mysql - 查询帖子自定义字段: check list inside a ACF repeater

转载 作者:行者123 更新时间:2023-11-29 18:25:47 26 4
gpt4 key购买 nike

我正在尝试查询在转发器字段中选中了特定复选框的所有帖子。

我找到了这个tutorial我想做的是主题 3 和主题 4 的混合,但我无法自己完成,我的第一次尝试是查询所有帖子并仅打印一个选中的项目:

<?php 

$args = array(
'post_type' => 'modalidade',
'posts_per_page' => -1,
);

$loop = new WP_Query( $args );

?>


<?php

// check if the repeater field has rows of data
if( have_rows('horarios') ):

// loop through the rows of data
while ( have_rows('horarios') ) : the_row();

$dia_da_semana = get_sub_field_object( 'dia_da_semana' );
$horario = get_sub_field_object( 'horario' );

if ( in_array(1, $dia_da_semana['value'])) {
echo 'segunda';
print_r( $horario['value']);
echo '<br>';
}

endwhile;

endif;

?>

但我不认为这是一个好的解决方案。也许有更好的方法来实现我想要做的事情。

最佳答案

我用教程找到了here并对我的代码和数据结构进行了一些调整并完成了。最终代码如下所示:

// filter
function my_posts_where( $where ) {

$where = str_replace("meta_key = 'time_%", "meta_key LIKE 'time_%", $where);
return $where;
}

add_filter('posts_where', 'my_posts_where');

// args
$args = array(
'posts_per_page' => -1,
'post_type' => 'class',
'meta_query' => array(
array(
'key' => 'time_%_day_of_week',
'value' => 'monday',
'compare' => 'LIKE'
),
)
);

对我来说非常重要的一个更改是将 'numberposts' => -1, 替换为 'posts_per_page' => -1, 以获取所有帖子。 numberposts 属性无法正常工作。

关于mysql - 查询帖子自定义字段: check list inside a ACF repeater,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46209379/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com