prostoalex
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem with date and time1) What exactly is wrong – year, month, day, hour or minute?
Forum: Fixing WordPress
In reply to: Pull info from two blogsThe second solution certainly sounds cleaner – have one back-end, one blog, and two subdomains pointing to different categories. Otherwise you’d have to either
(a) write PHP to access posts in database (potentially two different databases) and retrieve them
(b) export-import RSS feedsForum: Fixing WordPress
In reply to: restore RSS and footer linksAre the files actually there? The wp-rss2.php and what not?
Forum: Everything else WordPress
In reply to: Link Spammer InterviewWell, once there’s a way to take advantage of something provided for free (i.e. blog links), you can bet there will be someone who will.
Link spam and WordPress – even out of the box and with no plug-ins WordPress 1.2.2 has pretty nice features for fighting comment spam.
Forum: Your WordPress
In reply to: My 3 column 1.5 based on simple blueYeah, this text is all moved to the left a little. Easy to see what it’s saying, but still.
No Comments ??
No comments yet.
RSS feed for comments on this post. TrackBack URI
Leave a commentForum: Fixing WordPress
In reply to: XML feed help – thought quotient.comThere’s a space before the xml tag, very first line
<?xml version="1.0" encoding="UTF-8"?>
Forum: Your WordPress
In reply to: Car magazine with picturesah, thanks
Forum: Your WordPress
In reply to: My website: r0x0rzLove the PageBoost reviews:-)
Forum: Your WordPress
In reply to: Opinions?Yeah, this is one good design.
Forum: Installing WordPress
In reply to: Installation problem – failed to open streamIt’s complaining about the lack of wp-settings.php
Forum: Requests and Feedback
In reply to: Friends page like in LJThis would be an RSS aggregator, and there are plenty of services, including My Yahoo, that do it. I doubt WordPress folks would ever consider it, since WordPress is a publishing product, not an aggregator.
Forum: Your WordPress
In reply to: Car magazine with picturesYes, template is still in the works, we’re just posting more content right now to make sure pictures later on don’t break the page.
Yours is pretty cool, how did you get the categories to show up at top?
Forum: Fixing WordPress
In reply to: Adding Elements to SidebarOops, change that third line to
<?php wp_get_archives('type=postbypost&limit=50'); ?>
Forum: Fixing WordPress
In reply to: Adding Elements to SidebarAh, no, the full block for the sidebar in WordPress 1.2.2 would look something like this
<li id="archives"><?php _e('Archives:'); ?>
<ul>
<?php wp_get_archives('type=monthly&show_post_count=true'); ?>
</ul>
</li>
Depending on which template you’re using (I just modified the default one that ships with WordPress for my blog) your notation might be different to keep up with the template.
Forum: Everything else WordPress
In reply to: Not criticizing, just curiousHuman laziness.