anthonyqkiernan
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Fields Permalink 2] Error on post pageLet me answer this myself. I tried to concat the fields in the name using ‘-‘. replacing this with a / works
Forum: Fixing WordPress
In reply to: Importing RSS feed posts and snippets into a pageI’m also looking to do this. ie. I post on another blog and would like to integrate the feed of my posts with my personal blog.
At the moment, the only real way I can find to do it is to aggregate the two feeds and write a new page. Surely this can’t be that strange a thing to want to do?
Forum: Themes and Templates
In reply to: New Sidebar for Each CategoryExcuse my ignorance of php syntax. Is there a way to do this in the one line? eg. I’m using
if ($cat == “4” )
how do I add other options
if ($cat in(“4”, “5”)) ? or somethingOr do I need to include the same code for all possible options
if ($cat == “4” ){?>
Blah!
<?php } elseif {($cat == “5” ){?>
Blah!
<?php } else {{?>
Whatever!Forum: Themes and Templates
In reply to: New Sidebar for Each CategoryUsing the method laid out above I can get my sidebar to change for the parent, but it reverts for children. Any ideas?
Forum: Installing WordPress
In reply to: Moved to other domain, keeps redirecingCheers!
Of course, I had done so, but seeing as it kept redirecting I’d set it on the old url. (For anyone having the same trouble)Point 6 where that link leads sorted this. You might want to check the upload real path in the same table too.
Forum: Themes and Templates
In reply to: “if” the_category_ID…Cheers! I’ll maybe have a mess with that when I get home. In the meantime, I’ve cheated and just swapped two gategories over (as they were ‘new’ so didn’t have too many posts yet).
Forum: Themes and Templates
In reply to: Removing Sidebar List TagsHmmm. that should be “list=0”
Forum: Themes and Templates
In reply to: Removing Sidebar List TagsJust in case anyone wanders in here
<?php wp_list_cats(‘sort_column=name&optioncount=0&hierarchical=0&list=0‘); ?>
Forum: Plugins
In reply to: the_excerpt ReloadedCool. Cheers.
Forum: Themes and Templates
In reply to: Removing Sidebar List TagsHmmm. Where went the rest of my post? Anyhoo
It appears to stick the tags in in templates-functions-categories.php Managed to remove them completely (search & replace), but couldn’t find from where to replace them with a line break
Forum: Themes and Templates
In reply to: Removing Sidebar List TagsYou would think so, wouldn’t you? The tag in the side bar is:
<?php wp_list_cats(‘sort_column=name&optioncount=0&hierarchical=0’); ?>