我还没有测试下面的代码,但我认为您可以使用类似的东西。
add_shortcode( \'show_posts_from_cat\', \'wpse_85708_posts_from_cat\' );
function wpse_85708_posts_from_cat( $atts ) {
extract(shortcode_atts(array(
\'id\' => \'\'
), $atts));
$args = array( \'category\' => $id );
$cat_posts = get_posts( $args );
foreach( $cat_posts as $cat_post ) {
setup_postdata( $cat_post );
// Display code here.
return apply_filters( \'the_excerpt\', get_the_excerpt() );
}
}
在这种情况下
[show_posts_from_cat id="1"]
将显示id为1的类别帖子的所有摘录。