iand
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: The WordPress Support ForumsAnother thing that might be used is a ‘useful tips’ category where people who have found a problem and solved it can post the information for others.
Forum: Plugins
In reply to: Problem with ExhibitThis should fix it:
http://wordpress.org/support/topic.php?id=8501#post-124322Forum: Plugins
In reply to: Best WordPress ConfigurationI would definately agree with adding wp-plugin manager. It makes adding new ones by the user far more straight forward.
Forum: Fixing WordPress
In reply to: podcast? How to podcasting from my blog in WPThe ipodcasting tracker is something like ipodder – used to subscribe to podcasts. BTW I just managed to get your podcast ok. Via ipodder and straight into itunes. Don’t think your are missing anything 🙂
Forum: Everything else WordPress
In reply to: The WordPress Support ForumsI was thinking about how to raise awareness of whats in the codex. Maybe a ‘new pages in the wiki’ section – it won’t get many replies, but the codex links would show up when people search.
I also wondered about what would happen if ‘support’ was changed for ‘community’. Perhaps it would lower the expectation of people who come here just when they have difficulties, and encourage.. err.. something else?
Forum: Fixing WordPress
In reply to: “How To” Present Single Category on Separate Page?Two possible solutions (both are on that page, near the bottom):
1. Use<?php if ( !(in_category('3') && is_home()) ) { ?>as on the codex page. This will hide cat 3 only on the home page. If you then link to cat 3 (instead of cat3.php), only cat 3 will display (using index.php).
2. Use<?php if ( !(in_category('3')) ) { ?>on index.php and<?php if ( in_category('3')) { ?>on cat3.php.Forum: Fixing WordPress
In reply to: How to display something on main page only?Something like
<?php if ( in_category('3') && is_home()) { ?>? I think that should work. – i.e. will show posts in cat3 if your are on homepage. I have not tested this. Don’t forget to close theifstatement.Forum: Fixing WordPress
In reply to: Payment For WordPress Project HelpCould you not spend an hour or so writing posts, but set the date each one for when you want it posted. That way you could queue up a week or twos worth and then they will appear at the right time.
Forum: Plugins
In reply to: Ryan Boren’s Category Excluder Plugin TroubleshootingTry losing the stuff before
<?php....and after?>I don’t think it should be there.Forum: Fixing WordPress
In reply to: Moving a Topic: index page to new pageNot off hand. maybe your permalinks .htacces rules are off somewhere.
Forum: Fixing WordPress
In reply to: Moving a Topic: index page to new pageHow about
<?php wp_list_cats(0, '', 'name', 'asc', 'writings.php', 1, 0, 1, 1, 1, 1, 0,'','','','','exclude=1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,18,19,20,21,22,23') ?>? – slightly changed from what you had before.Forum: Fixing WordPress
In reply to: Moving a Topic: index page to new pageNot really. Looking at the codex you could try just ‘writings.php’ 🙂 .
Forum: Fixing WordPress
In reply to: Moving a Topic: index page to new pageSorry, my mistake – I was looking at the posts, not the sidebar.
Maybe use<?php wp_list_cats('sort_column=name&optioncount=1&exclude=1,2,3'); ?>? I just tried it on my test site and it seemed to nuke the general category. It looks like it takes the same parameters as list_cats.Forum: Fixing WordPress
In reply to: Moving a Topic: index page to new pageThat would probably work. I guess it is the multiple categories that make it more difficult than my situation. Thinking about it you most likely need writings.php and use something like
<?php if ( in_category('X Y Z') ) { ?>(not sure of the syntax for multiple cats) for it’s loop.Forum: Fixing WordPress
In reply to: Moving a Topic: index page to new pageIt looks ok to me – what problems are you having?. On my site I use
<?php if ( !(in_category('3') && is_home()) ) { ?>and then base my photoblog on index.php and link to that category. (No photoblog.php required 🙂 )