我对 Wordpress 和选择性帖子类型选择有疑问。
我正在构建一个模板,但我正在尝试使用ACF创建一个函数,当有人创建页面时,他们可以选择要在此页面上显示的帖子类型。
我制作了一个变量,其中包含以下内容:
$p = the_field('post_typer');
当用户创建页面并选择他想要显示的帖子类型时,此变量正在获取其值。
$p = the_field('post_typer');
// WP_Query arguments
$args = array(
'post_type' => $p,
);
我想知道为什么这不起作用:
'post_type' => $p,
请帮忙
答案 0 :(得分:1)
根据您拥有的字段类型,您应该执行get_field
$p = get_field('post_typer');
// WP_Query arguments
$args = array(
'post_type' => $p,
);
答案 1 :(得分:0)
这对我有用:
<?php
$tipo_post = get_field('tipo_de_post');
$city_post = get_field('ciudad_npc');
$loop = new WP_Query(
array(
'post_type' => $tipo_post,
'category_name' => $city_post,
'posts_per_page' => 700
));
while ( $loop->have_posts() ) : $loop->the_post(); ?>
<li class="td-nombre text-left align-middle"><a href="<?php the_permalink(); ?>"><?php the_field('nombre'); ?></a></li>
<?php endwhile; ?>