因此, 我正在制作一个wordpress主题, 并且在设置archive.php的样式, 希望你们中的一个可以帮助我解决我的问题。我对所有这些都是新手, 因此答案越彻底越好。我目前正在使用此:
<?php $the_query = new WP_Query( array('posts_per_page'=>1, 'cat'=>'current_page_category')); ?>
#1
你可以像这样获取当前的类别ID:
有关此内容的更多信息, 请参阅WP Codex。
<?php
$current = get_category(get_query_var('cat'));
$current_id = $current->term_id;
$args = array(
'posts_per_page' => 1, 'cat' => $current_id, );
$wp_query = new WP_Query($args);
?>
评论前必须登录!
注册