我的父类别是游戏cat_id=42
. 子类别包括:acrade、causual等,。。。。我想在主页模板中显示一个顶级游戏模块,它将显示游戏类别中的10个粘性帖子。
这是我的代码:
<?php
$args = array(
\'cat\' => 42,
\'posts_per_page\' => 10,
\'post__in\' => get_option( \'sticky_posts\' ),
);
query_posts( $args );
?>
最合适的回答,由SO网友:Maruti Mohanty 整理而成
使用主页模板中的以下代码显示粘性帖子。
<?php
$args = array(
\'cat\' => 42,
\'posts_per_page\' => 10,
\'post__in\' => get_option( \'sticky_posts\' ),
);
// The Query
$the_query = new WP_Query( $args );
// The Loop
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo \'<li>\' . get_the_title() . \'</li>\';
}
上面将打印粘贴帖子的标题