$query_recent = new WP_Query(array(
'posts_per_page' => 100, //The default is 10
'category__not_in' => array(12),
'post_status' => 'publish', //The default is publish already
'post_type' => array('video') //could use only a string 'any' too
));
$u = 0;
while($query_recent->have_posts()) {
$u++;
$query_recent->the_post();
$title = get_the_title();
$cleancontent = explode(" – ",$title);
$videolink = get_post_meta($post->ID, "video_link", true);
$videoimage = "https://img.youtube.com/vi/".$videolink."/3.jpg";
?>
-
$i++;
}
?>