Ryan Fitzer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Separate Category List by Parent CategoryYou can send an email to thye WP Pro mailing list. http://codex.wordpress.org/Mailing_Lists#Professional
Forum: Fixing WordPress
In reply to: Separate Category List by Parent CategoryIt seems as you know what your doing and that the only way to solve this would be to write a plugin that alters the ouput of the_category. Or alter the core files to achieve what your looking for. Sorry I couldn’t be of more assistance.
Forum: Fixing WordPress
In reply to: Any CSS Guru’s?Hmmmm… Cleared the cache with no change. I’m on FF 1.5.0.7 on Mac. And thanks for checking. At least no one else but me sees it.
And Kafkaesqui, thanks for the nice words. BTW, I’m using your post image plugin, so thanks a bunch!
Thanks guys.
Forum: Fixing WordPress
In reply to: Separate Category List by Parent CategoryGive me a link to the output so I can see.
Forum: Fixing WordPress
In reply to: Separate Category List by Parent CategoryPut it in your single.php template file.
Forum: Fixing WordPress
In reply to: Separate Category List by Parent CategoryHow about this. http://codex.wordpress.org/Template_Tags/the_category
Forum: Fixing WordPress
In reply to: Separate Category List by Parent Category“Thank you. But how do I list them horizontally? The code above generates a vertical list.”
This makes me think that it is doing the job (maybe). Licorne, is it listing by the ID or grabbing everthing. I’ve never tried it in a post, only hardcoded into a template.
Forum: Fixing WordPress
In reply to: IE/firefox show different things, help!BTW, I serve this stylesheet by importing it. In your style.css you would add this at the end:
@import url(ie.css);
Forum: Fixing WordPress
In reply to: IE/firefox show different things, help!The way I like to go about this is to serve IE a stylesheet all it’s own. Start a new css doc and name it “ie.css”. Then, start all css rules with “* html” (no quotes of course). For example:
* html a {
color:#660000;
}This will only be read by IE6 and earlier. A great site to learn more about this type of stuff: http://www.positioniseverything.net/
Forum: Fixing WordPress
In reply to: Separate Category List by Parent CategoryThis should do the trick. http://bluesome.net/post/2005/08/18/50/
Forum: Plugins
In reply to: RSS feeds as postsI just read this old article on Chris J Davis’ site today. It talks about using WP’s rss functions to pull in feeds and format them as you’d like. Might help. http://www.chrisjdavis.org/2005/06/13/secrets-pt-3/
Forum: Fixing WordPress
In reply to: Separate Category List by Parent CategoryCSS.
Give the ul a class. I’ll use “cats”.
Markup:
<ul class="cats">
<?php wp_list_cats('sort_column=ID&hide_empty=0&child_of=1'); ?>CSS:
.cats {
display:inline;
}Forum: Fixing WordPress
In reply to: Separate Category List by Parent Category<ul>
<?php wp_list_cats('sort_column=ID&hide_empty=0&child_of=1'); ?>
</ul>Change “child_of=1” to whatever ID you want. Category ID’s are found in your site admin under Manage>Categories.
Forum: Everything else WordPress
In reply to: WP search is kinda screwyYeah, that’s what I noticed too.
Forum: Everything else WordPress
In reply to: WP search is kinda screwyThanks for the tip!