AB
Size: a a a
AB
AB
PB
IV
IV
IV
// IF
if ( ! empty( $_POST['video_type'] ) ) {
$custom_args = [
'meta_key' => 'video_type',
'orderby' => 'meta_value',
'order' => $_POST['video_type'],
];
}
// Ternary
$custom_args = ! empty( $_POST['video_type'] ) ? [
'meta_key' => 'video_type',
'orderby' => 'meta_value',
'order' => $_POST['video_type'],
] : [];
MD
MD
IV
IV
MD
AB
// IF
if ( ! empty( $_POST['video_type'] ) ) {
$custom_args = [
'meta_key' => 'video_type',
'orderby' => 'meta_value',
'order' => $_POST['video_type'],
];
}
// Ternary
$custom_args = ! empty( $_POST['video_type'] ) ? [
'meta_key' => 'video_type',
'orderby' => 'meta_value',
'order' => $_POST['video_type'],
] : [];
IV
MD
MD
MD
VK
AB
VK