Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hwkdev/ff9213a28ca0fa9d193454830e790557 to your computer and use it in GitHub Desktop.
Save hwkdev/ff9213a28ca0fa9d193454830e790557 to your computer and use it in GitHub Desktop.
<?php
add_filter('group_hwk_contenu_flexible_location', 'hwk_post_type_portfolio_contenu_flexible_location_complexe');
function hwk_post_type_portfolio_contenu_flexible_location_complexe($location){
// OR
$location[] = array(
array(
'param' => 'post_type',
'operator' => '==',
'value' => 'portfolio',
),
// AND
array(
'param' => 'post_format',
'operator' => '==',
'value' => 'video',
),
);
// OR
$location[] = array(
array(
'param' => 'post_type',
'operator' => '==',
'value' => 'post',
),
);
return $location;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment