rbenson
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Split the year ‘s archive by monthsBump?
Forum: Fixing WordPress
In reply to: Preloaded text in post?I use a modded version of a technorati tag adder for wordpress.com using greasmonkey for my self hosted blog. Maybe you can use the GM script to auto load the text?
Forum: Fixing WordPress
In reply to: Sub Category PostsThat is just how it works from what I know. The only way to is not making them sub-cats. Which if you don’t want posts in sub-cats to not be by cats, why are they sub-cats anyhow?
Forum: Fixing WordPress
In reply to: Edit the menu below the commentYes you can, how much PHP do you know?
Forum: Fixing WordPress
In reply to: Category archive by monthSo in your archive.php file there may be something like
<?php if (is_category()) { ?>...
is_category can take a parameter. So, is_category(ID).
What you can maybe do is:
<?php if (is_category(<?php get_the_category(cat_ID) ?>) {<?php get_archives(); ?>} endif; ?>
That would go in your sidebar,Forum: Fixing WordPress
In reply to: Add hyperlink for archivesJust the same way you normally link, but you need to know what its called. Mine is http://blog.rbenson.info/archives
Forum: Fixing WordPress
In reply to: permalinks without index.php in IIS shared serverWhat does your permalink options look like? Options > Permalinks.
You may have some weird setting. Try adjusting the options there.Forum: Fixing WordPress
In reply to: Blog in websiteWhat do you mean you have a page for it? WordPress needs its own folder. That could be a top level of a domain or a folder under a domain.
My own blog is actually a subdomain of my main domain.
Forum: Fixing WordPress
In reply to: Edit my RSS feed nameI think you have to rename it through wp-rss.php/wp-rss2.php, look for
<channel> <title><?php bloginfo_rss('name'); ?></title> <link><?php bloginfo_rss('url') ?></link> <description><?php bloginfo_rss("description")type what you want in between the title tags. I am not 100% on this, so backup the file locally BEFORE editing.
Forum: Fixing WordPress
In reply to: New lines in posts don’t workCan you clarify? I am lost in your comment.
Forum: Fixing WordPress
In reply to: comments pageDid you fix it? The display:hidden maybe in your stylesheet not single.php
Forum: Fixing WordPress
In reply to: comments pageYou will not find that exact code anywhere. It is in comments.php, but you must know some php to effectively edit it.
Forum: Fixing WordPress
In reply to: paste option not availableNo sweat, I bet your mouse just didn’t like the location.
Forum: Fixing WordPress
In reply to: New lines in posts don’t workWhat editor are you using? The WYSIWYG or the html? If its the html one, you must put five
<br />tags between your paragraphs…you can’t hit enter 5 times…Forum: Fixing WordPress
In reply to: paste option not availableDid you try ctrl + V?