Skip to content

Instantly share code, notes, and snippets.

@laras126
Created November 21, 2014 18:47
Show Gist options
  • Save laras126/370fe0fa8d6ef38f6594 to your computer and use it in GitHub Desktop.
Save laras126/370fe0fa8d6ef38f6594 to your computer and use it in GitHub Desktop.
<?php
$id = get_the_ID();
$args = array (
'post_type' => 'video',
'meta_query' => array(
array(
'key' => 'director',
'value' => $id
)
),
'meta_key' => 'post_order',
'orderby' => 'meta_value',
'order' => 'rand',
'limit' => -1
);
$query = new WP_Query( $args );
if ($query->have_posts()) : while ($query->have_posts()) : $query->the_post();
the_content();
endwhile; endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment