Mr. Grim Reaper
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Author not showingWhen I go to write a post, the author is set to another user, and my name is not on the list, except for posts as me already an author. This first happened when the two other authors registered (originally as “authors,” now as “contributors”).
Forum: Fixing WordPress
In reply to: Author not showingAnyone? This is becoming increasingly irritating.
Forum: Fixing WordPress
In reply to: Subpages with .html extensionAsthmatics, mostly. I personally don’t like my links to be deep (in terms of number of “directories”).
Forum: Your WordPress
In reply to: Grimmeh — Hella Sweet CarsCan anyone please comment on the design? I would really appreciate some feedback from it.
Forum: Fixing WordPress
In reply to: Subpages with .html extensionAnyone or anything?
Forum: Fixing WordPress
In reply to: Something wrong with Category.php?I might get it. Do you mean it’s like archive.php and archives.php? So, use categories.php for the page template and category.php for displaying the posts?
Yep, that did the trick! Thanks.
Forum: Fixing WordPress
In reply to: Google not indexing my blogWell, your PageRank is based heavily on how many pages link to it, and their PageRank. Also, your old blog was probably older and got a benefit from that (unless it was only by a month or two) and you should delete your old blog, as duplicate content is a no-no.
Forum: Fixing WordPress
In reply to: Better (Internal) Link ControlSorry for so many posts, but I found a plugin to add trailing slashes by Peter Claus Lamprecht.
I’ll mess with it to see if I can find a way to adjust the feed URLs as well.
Forum: Fixing WordPress
In reply to: Better (Internal) Link ControlAnyone?
Also, about links such as:
http://example.com/hello-world.html/feedtohttp://example.com/hello-world.xmland also archive links fromhttp://example.com/2008/08tohttp://example.com/august-2008/Any help as to where I could find these functions?
Forum: Fixing WordPress
In reply to: Better (Internal) Link ControlMostly for personal preference, but I’m sure it can be done by editing the hard code, right? Is it even possible to make a plugin for it?
Forum: Fixing WordPress
In reply to: Better (Internal) Link ControlNo, not that. I understand all the built-in functions. I’m talking about past that.
Take this link for example:
http://example.com/category/uncategorized
I want it to be:http://example.com/category/uncategorized.htmlThe same for feed link:
From:
http://example.com/feed
To:http://example.com/feed.xmlGet it?
Forum: Fixing WordPress
In reply to: Better (Internal) Link ControlNo, beyond permalinks. Like above, RSS feed links, category links, tag links, page links, etc.
Forum: Fixing WordPress
In reply to: First (most recent) post separate from the restSorry for the late reply, but I still can’t seem to get it to work right. The post titles come out all wrong, but the content works fine.
Forum: Fixing WordPress
In reply to: First (most recent) post separate from the restI don’t understand what you mean. Where would I use that? What would
$postand$postsbe?I have it this way for now:
$firstpost = get_posts( 'numberposts=1&post_date&order=DESC' );foreach( $firstpost as $post ): setup_postdata( $post );
That gives me my first, most recent post. Problem is, how do I get all but that one to display after?