我有这个 wordpress 功能
function randm() {
$args = array( 'post_type' => 'post',
'orderby'=> 'rand', 'category_name' => 'Motor',
'posts_per_page' => 1, );
wp_reset_postdata();
}
else { $string .= 'no posts found'; } return $string; }
add_shortcode('randm','randm');
add_filter('widget_text', 'do_shortcode');
在上面的代码中,如果我输入 [randm] 将显示来自“Motor”的帖子类别,我想在其中添加多个类别,并为每个不同类别添加多个短代码,该怎么做?
侃侃无极