例如,下面的代码仅显示post id 2578的页面质询。然而,我有8个其他职位,应该有相同的布局。所有其他人都应该有challenge-2等的布局。我希望我可以通过在ID之间添加逗号来做到这一点。比如2578、2579、2580,但这不起作用。我需要做什么?
if ( is_single( 2578 ) ) {
get_template_part(\'partials/content\', \'challenge\');
}
elseif ( is_single( ) ) {
get_template_part(\'partials/challenge/content\', \'challenge-2\');
get_template_part(\'partials/challenge/content\', \'categories\');
get_template_part(\'partials/challenge/content\', \'snake-checklist\');
get_template_part(\'partials/challenge/content\', \'timeline\');
}
?>`