irondavy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Threaded Comments Transfer from WordPress.com FAILActually, this finally worked!
Forum: Fixing WordPress
In reply to: Threaded Comments Transfer from WordPress.com FAILAlso having this problem. It’s killing me!
Forum: Fixing WordPress
In reply to: Media upload problemsNevermind, somehow between switching servers the default image upload path got broken. Stupid me!
Forum: Fixing WordPress
In reply to: index.php not parsingI solved it by copying over the contents of index.php to a new file, deleting index.php and renaming the new file index.php. No idea why it worked, but it did.
Forum: Fixing WordPress
In reply to: index.php not parsingwhooami: Yes it is.
Forum: Fixing WordPress
In reply to: List all pages under a specific parentI figured out how to list them:
http://codex.ww.wp.xz.cn/Template_Tags/wp_list_pages#List_Sub-Pages_.28Wordpress_2.0.1_or_newer.29
But now I’m wondering if I can include the page’s excerpt in the list…
Forum: Fixing WordPress
In reply to: Multiple LoopsThe right posts show up if I query for the category, the right posts show up if I query for the tag, but if I query for both nothing shows up. Thanks for all your help maxaud!
Forum: Fixing WordPress
In reply to: Multiple LoopsThanks so much for your continued support maxaud. I tried if statements like this:
<?php if (is_category('1')) { query_posts('cat=1&tag=feature'); } elseif (is_category('3')) { query_posts('cat=3&tag=feature'); } elseif (is_category('4')) { query_posts('cat=4&tag=feature'); } elseif (is_category('5')) { query_posts('cat=5&tag=feature'); } ?>This solution and your solution, which I tried like this…
<?php $categoryvariable=$cat; // assign the variable as current category $query= 'cat=' . $categoryvariable. '&orderby=date&order=ASC'; // concatenate the query query_posts($query); // run the query ?>…have the same results as my original code: no posts show up. Argh!
Forum: Fixing WordPress
In reply to: Multiple LoopsI’m not good at the writing of the code but what if you put in &category=# or something similar when you query the posts, where # is the category of albums?
Well I can’t put in a specific category number because I want whatever one is being passed by the URL. Unless there’s a way of passing that. I’m not really sure.