• I’m having trouble displaying the posts by the category. I installed the plugin and changed the posts in the category. I even copied the “Reorder Terms Query” custom code and added it to my page template like this:

    <?php
    $args = array (
    	'cat'              => 5,
    	'post_type' => 'galeria',
    	'order' => 'ASC',
    	'post_status' => 'publish',
    	'posts_per_page' => -1,
    	'meta_key' => '_reorder_term_category_galleriaposts',
    	'orderby' => 'meta_value_num title'
    );
    $the_query = new WP_Query( $args ); ?>

    However, it’s not displaying the order that I wanted it to display. Do you have the documentation or something that’ll help me to display the category posts?

  • The topic ‘Plugin not showing category posts..’ is closed to new replies.