我在WordPress中定义了一个自定义分类法,如下所示:
function content_selector() {
register_taxonomy(
'contentselector',
'post',
array(
'label' => __( 'Content Selector' ),
'rewrite' => array( 'slug' => 'cs' ),
'hierarchical' => true,
)
);
}
add_action( 'init' , 'content_selector' );
它显示在新帖子中并且可以分配值,实际上它似乎有效。但是,当我使用以下功能通过此分类法调用帖子时,没有成功。
add_shortcode('rps', 'rpsf');
function rpsf() {
$args =[ 'posts_per_page' => 1, array(
'tax_query' => array(
array(
'taxonomy' => 'contentselector',
'field' => 'slug',
'terms' => 'one-of-the-assigned-terms')
))];
$query = new WP_Query( $args );
if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post();
ob_start(); ?>
<div class="rpst">
<a href="<?php the_permalink(); ?>"><span><?php the_title(); ?></span</a>
</div>
<?php endwhile; endif; wp_reset_postdata();
return ob_get_clean();
}
我在定义分类法或致电帖子时犯了错误吗?
答案 0 :(得分:2)
如果您正确格式化代码,并且在使用的符号方面保持一致(例如,[]
vs array()
),则更容易调试代码。
在'清除'$args
定义后,很明显它的结构不正确:
$args = array(
'posts_per_page' => 1,
array(
'tax_query' => array(
array(
'taxonomy' => 'contentselector',
'field' => 'slug',
'terms' => 'one-of-the-assigned-terms'
)
)
)
);
看起来应该更像这样:
$args = array(
'posts_per_page' => 1,
'tax_query' => array(
array(
'taxonomy' => 'contentselector',
'field' => 'slug',
'terms' => 'one-of-the-assigned-terms'
)
)
);