break_r
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Interesting little problem…The " above needs the & in front
Forum: Fixing WordPress
In reply to: How do I insert a double quote using HTML?Hi,
I was trying that earlier. However, I missed the last terminating statement…doh!
Works now…phew.
Thx.
Forum: Fixing WordPress
In reply to: How do I insert a double quote using HTML?Hi again,
I’d also like to color my text. “foo” would appear red with double quotes that copy correctly into a text editor.
How do I add this style in CSS?
Forum: Themes and Templates
In reply to: Doubling the Kubrick theme width?Lick my nuts…awesome. =P
Yeah, I figured I’d be a pain. I’ll browse the themes…
Thx.
Forum: Themes and Templates
In reply to: New CategoriesOh wait. It’s in a previous entry…duh. I guess u can’t do that.
Thx for all ur help. I’ll just give up now and accept it for what it is =)
Forum: Themes and Templates
In reply to: New CategoriesYes, but under ‘Questions’ a post is named ‘Creating a Drop-in Ready Theme’.
On the ‘ThemeCompetition’ page there is no post about ‘Creating a Drop-in Ready Theme’. Even tho ‘Questions’ is a child of ‘ThemeCompetition’.
How do i remove my post ‘foo’ from Programming, without losing the C# link?
Forum: Themes and Templates
In reply to: New CategoriesOk, I’ve tried that and updated the site. A couple of minor points now.
1) Unless the post “foo” is assigned to *both* “C#” and “Programming” it doesn’t show up.
2) I’d like the Programming link to display a different page.
Perfect example:
http://managedtasks.com/wpthemes/blog/index.php?wptheme=Almost+SpringThe link ‘ThemeCompetition’ displays a different page than the sub-link ‘Question’.
Forum: Themes and Templates
In reply to: New CategoriesI guess it would be categories and *not* link categories…
Forum: Themes and Templates
In reply to: New CategoriesNo apologies necessary. Thank u for just responding.
Sigh…I’m not sure anymore. =P
K, lemme try and explain one more time:
Using the default theme, one has a “Categories” section. I can easily create categories with WordPress and an example of the result would be:
Categories
* C#
* C++/CLI
* Maya 7
* Unrealscript
* Conceptual artHowever, I’d rather have “Categories” renamed to something like this:
Programming
* C#
* C++/CLI
* UnrealscriptAnd then have another “Categories” section, perhaps something like this:
Graphics
* Maya 7
* Conceptual artForum: Fixing WordPress
In reply to: How to add sub-categories?Here’s my test page to see what I’m trying to do:
http://www.conceptualinertia.net
Under “Categories2” I’d like a different list.
Forum: Fixing WordPress
In reply to: How to add sub-categories?Again in sidebar.php, there’s:
- <h2>Categories</h2>
-
<?php wp_list_cats(‘sort_column=name&optioncount=1&hierarchical=0’); ?>
So I just cut’n paste another one below and rename it:
- <h2>Categories2</h2>
-
<?php wp_list_cats(‘sort_column=name&optioncount=1&hierarchical=0’); ?>
It shows the second category but it mirrors all the subcategories of the first one. Sorry, this is my first encounter with php =P
Forum: Fixing WordPress
In reply to: How to add sub-categories?nope. my bad. just hierarchical alone appears to work.
What if I’m going about this wrong. Why not have multiple “Categories” sections.
Ie.
Category1
>foo1
>bar1Category2
>foo2
>bar2Forum: Fixing WordPress
In reply to: How to add sub-categories?thx. I was actually just playing with that line of code.
In sidebar.php, u’ll need both hierarchical and children for the default theme in 2.0
For example:
wp_list_cats(‘sort_column=name&optioncount=1&hierarchical=1&children=1’);Regards.
Forum: Fixing WordPress
In reply to: How to add sub-categories?I was hoping there was something in the WordPress UI but I’ll dig around the tags. Thx!
Forum: Fixing WordPress
In reply to: How to add sub-categories?Wher bar1 and bar 2 above would be indented as sub-categories =P