orry
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Multiple authors with their own categoriesCaPa looks like a good start. I don’t actually want to hide posts on the site but only in the admin panel – but that might be something I can fix manually. Thanks!
Forum: Themes and Templates
In reply to: Generic Add New Post formI’m looking for the exact same thing.
I want members to be able to add posts to the default category via a simple form with heading, body, tags and friendly url preview. Perhaps a few simple options such as allow/disallow comment etc. A plugin that posts to the build in post function would be ideal i think.
Anyone on the forums with experience of this at all?
Best
FredrikForum: Fixing WordPress
In reply to: What is a trackback URL suppose to look like?My trackback links look like this https://ofog.net/blog/archives/2005/02/24/34/trackback/ incoming trackbacks seems to work for me, but not not outgoing.
Forum: Fixing WordPress
In reply to: Trackbacks broken in 1.5?Trackbacks from other sites to my blog works fine, but outgoing ones won’t show up at the remote blog. Just tried Trident’s site and my post it’s not on the site or in the moderations quene. What could be the reason for this problem?
How can I check if pingbacks work? I mean, they don’t really show up anywhere do they?
Forum: Fixing WordPress
In reply to: Possible to categorize the categories?Basicly, I think this code should work – but why doesn’t it?
<h2><?php _e('CATEGORIES'); ?></h2>
<ul>
<?php wp_list_cats('sort_column=name&exclude=5, 6, 7, 8'); ?>
</ul><h2><?php _e('PERSONAL LOGS'); ?></h2>
<ul>
<?php wp_list_cats('sort_column=name&exclude=1, 2, 3, 4'); ?>
</ul>First, I exlude cats 5 through 8, and show cats 1 – 4, then I exlude those and show cats 5 – 8. But it seems that the wp_list_cats can only run once, since the second loop gives me “No categories”
Forum: Fixing WordPress
In reply to: Possible to categorize the categories?Yay! It almost worked ?? Got my hopes up there for a while.
the_category()
works with only one category it seems – but it doesn”t want to display all the category id”s I put in. The codex suggests that it should work with multiple cats though ??I tried to put all my “personal log” categories as children to a parent and then displaying them through
wp_get_cats('child_of=ID')
but it came out as “No categories” as usual… very strange…Forum: Fixing WordPress
In reply to: wp_list_cats only runs once?Also. Is there a way to display the full feed from a certain category in a sepparate column on the front page? I mean are there any arguments for
the_content();
that are not listed in the Wiki?Forum: Fixing WordPress
In reply to: Trident questionAre you running WP 1.5? In that case rename the stylesheet to
style.css
and you should be fine.Forum: Fixing WordPress
In reply to: Comment and date problemsYep, for some unexplainable strange reason it all started to work again when I changed my permalink structure and deleted some stray empty drafts. Think maybe I had that permalink structure on the earlier version.