Thread Starter
droig
(@droig)
My fault: it was “Result Page URL” missconfig of “Result Page” tab in Dashboard.
Hi, I have a custom post and category. This is my post query code:
query_posts( array(
‘post_type’ => ‘CUSTOM_POST’,
‘taxonomy’=>’CUSTOM_CAT’,
‘term’ => ‘cat_slug’,
‘nopaging’ => TRUE
) );
————
Then y just use de normal LOOP
if ( have_posts() ) { while ( have_posts() ) { …………..
Cheers!
for the record: I was trying to use WP_Query object and this plugin won’t work in that way. Use query_posts instead if you need to query posts or custom posts in the middle of a page. I discovered this after a lot of hours 😛
This plugin is just what I needed 😉