I'm fairly proficient at coding, but Thesis is driving me nuts with this normally simple task...
I need to set up Thesis to post in chronological order...Or...better yet, to be able to have a "single" sticky post on the home page.
With almost any other theme, I can place this code before the loop in the index.php file: <?php query_posts($query_string . "&order=ASC") ?> ,to reverse the post order.
I can also place this code in the index.php to allow a single sticky post on the home page: query_posts(array('post__in'=>get_option('sticky_posts')));
However, I can not figure out where to place either of these codes in Thesis. I've pretty much tried every position possible in the loop.php file and in functions. There may be a hook to accomplish this, but absolutely no one has written a tut on this.
I'd really appreciate it if one of you guys could help me out. I just need to know what file and position to drop whichever code in...
Thanks in advance.
I need to set up Thesis to post in chronological order...Or...better yet, to be able to have a "single" sticky post on the home page.
With almost any other theme, I can place this code before the loop in the index.php file: <?php query_posts($query_string . "&order=ASC") ?> ,to reverse the post order.
I can also place this code in the index.php to allow a single sticky post on the home page: query_posts(array('post__in'=>get_option('sticky_posts')));
However, I can not figure out where to place either of these codes in Thesis. I've pretty much tried every position possible in the loop.php file and in functions. There may be a hook to accomplish this, but absolutely no one has written a tut on this.
I'd really appreciate it if one of you guys could help me out. I just need to know what file and position to drop whichever code in...
Thanks in advance.