我需要创建一个显示CPT帖子的快捷码。我想在Wp\\u查询的参数中添加一个atts,用于打印每页所需的posts\\u数量。
但如果我使用
[short_events number=5]
它只打印一篇文章。我错在哪里?
function dis_short_events($atts, $content = null){
ob_start();
$numero = extract(shortcode_atts(array(
\'number\' => \'-1\',
), $atts));
$args =array(
\'post_type\'=>\'eventi\',
\'posts_per_page\' => $numero
);
}
add_shortcode(\'short_events\', \'dis_short_events\');