sure.
i just reproduce the problem with a clean setup, this are the steps:
-> start with clean wp version 3.2.1
-> install > Custom Content Type Manager : Version 0.9.3.3
-> create cpt: "artists"
-> create 3 artists posts, title: a, b, c
-> put this snippet on the homepage (index.php in twentyeleven theme):
<?php
// show randomly 3 posts of c_p_t 'artists'
// set the query
$query = array (
'posts_per_page' => 3,
'post_type' => 'artists',
'orderby' => 'rand',
'order' => 'title'
);
// loops
$queryObject = new WP_Query($query);
if ($queryObject->have_posts()) : ?>
<?php while ($queryObject->have_posts()) : ?>
<?php $queryObject->the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php endwhile; ?>
<?php endif; ?>
-> watch behavior of the posts while reloading the site (should be sorted randomly)
-> auto update Custom Content Type Manager : Version 0.9.4.1-pl.
-> check sorting of posts again > sort stopped working (
-> helper: put "remove_all_filters('posts_orderby');" in functions.php
actually, i am not sure if this workaround completely solves the problem, as well the category pages for the custom content post type + pagination seems to not working properly.
greetz!