作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试查询在转发器字段中选中了特定复选框的所有帖子。
我找到了这个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/
我是一名优秀的程序员,十分优秀!