colinmorgan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Categories in URL?The category base would be the same across the board for all categories, correct. Adding %category% to your permalink structure will simply include the category name in the URL when viewing a post. So it would look like this:
http://www.yoursite.com/recipe/post-titleTo get the results your looking for, your best bet is the plugin.
Forum: Fixing WordPress
In reply to: Categories in URL?unfortunately, the /category/ extension can’t be removed easily for category URL’s. You can, however, rename the /category/ extension to something else in your permalinks menu. The option to change it is called Category base:
Forum: Fixing WordPress
In reply to: Website WordPress Conversion help.Which template is your code located in?
Forum: Fixing WordPress
In reply to: Categories in URL?There are a few plugins that can help you out. Yoast created a very useful SEO plugin that has lots of features, including “removing the category extension”. Check it out:
http://wordpress.org/extend/plugins/wordpress-seo/Forum: Fixing WordPress
In reply to: Website WordPress Conversion help.Correct me if I am wrong, but I believe what you are looking for is your comments template. You can add your comments template to your post template using the following tag:
<?php comments_template(); ?>Forum: Fixing WordPress
In reply to: Permalink 404 Problem: 2.8 StyleNot sure if anyone has mentioned this yet but….
In most cases the problem occurs because wordpress is in a sub directory and the htaccess is set incorrectly to reflect this. If your wordpress files are in a subdirectory.. ex. http://yoururl.com/wordpress then you need to change this line in your htaccess file within the sub directory folder:
RewriteRule . /index.php [L]
to
RewriteRule . /wordpress/index.php [L]
where wordpress is the name of your subdirectory folder.
I hope this helps.