turtlemimi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Adding a post query makes monthly archive display all postoh my god this worked.
thank you so much!!
Forum: Fixing WordPress
In reply to: Adding a post query makes monthly archive display all postyeah.. thanks for trying to help though!
Forum: Fixing WordPress
In reply to: Adding a post query makes monthly archive display all postno… there are wordpress functions but the only time the loop is ever called is within the main body of the template.
Forum: Fixing WordPress
In reply to: Adding a post query makes monthly archive display all postIt is the only loop in the template file. As far as I can tell the header and footer do not call any loops…
Putting any of the following before I call the query does not affect anything:
wp_reset_postdata();
wp_reset_query();
rewind_posts();Forum: Fixing WordPress
In reply to: Adding a post query makes monthly archive display all postIt’s a custom theme.. I did not develop it but I am doing the dev work on it
Forum: Fixing WordPress
In reply to: Adding a post query makes monthly archive display all postNo change… =/
Forum: Fixing WordPress
In reply to: List custom posts alphabetically except for the first itemThanks, this solution worked
This is happening to me too! Please help
Forum: Fixing WordPress
In reply to: List custom posts alphabetically except for the first itemi have a query post:
query_posts(array ( 'post_type' => 'CUSTOM_NAME', 'posts_per_page' => -1, 'order' => 'ASC' )) ; if (have_posts()) : while (have_posts()) : the_post();then code to list titles with images (etc)
then closing my query with:
endwhile; endif; wp_reset_query();Forum: Fixing WordPress
In reply to: List custom posts alphabetically except for the first itemunfortunately, sticky posts do not work with custom post types.