Generate Catalog Of Posts Based On Template
To get all posts ordered by their template you need two functions: one for the query, and one to add a custom order. Get the posts function get_posts_by_template() { add_filter( ‘posts_orderby’, ‘orderby_template’ ); $query = new WP_Query( array( //’meta_key’ => ‘_wp_page_template’, ‘post_type’ => ‘any’, ‘orderby’ => ‘title’, ‘order’ => ‘ASC’, ‘posts_per_page’ => -1, // dangerous … Read more