这是更多的php,但您可以使用in_array()
. 只需检查当前帖子类型是否在中的数组中$hide_sidebar
.
您可以执行以下操作
$hide_sidebar = array(\'example1\', \'example2\', \'example3\'); //hide sidebar on these post types
if ( in_array( get_post_type(), $hide_sidebar ) ) {
// Do something if the post type is in array
}
或是消极的
$hide_sidebar = array(\'example1\', \'example2\', \'example3\'); //hide sidebar on these post types
if ( !in_array( get_post_type(), $hide_sidebar ) ) {
// Do something if the post type is not in array
}