Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 67836

Plugin not showing category posts..

$
0
0

Replies: 0

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?


Viewing all articles
Browse latest Browse all 67836

Trending Articles