At this current moment. is it possible to sort multiple custom post/page types without a meta key/value?
I’m looking to just sort the posts by page attribute order:
What have i done so far? I’ve created a query like so and no luck
<?php
// query for videos in the home page category
$args = array(
'post_type' =>array('videos', 'podcasts'),
'category_name' => 'Videos on Homepage',
'post_per_page' => 4,
'order' => 'DESC'
);
$loop = new WP_Query($args);
// etc....
?>
What ended up working is adding the array key, “orderby” and adding menu_order: