By Santiago on June 22, 2009
A well-known tip in the blogosphere regarding WordPress is to remove the WordPress version from your meta-tags that are automatically generated by your WordPress blog. This information can be used by potential hackers to pinpoint which version of WordPress you are using, and can help them find an exploit to start hacking your website. Since [...]
Posted in WordPressCreme News | Tagged Code, Hacks, How To, Site, Wordpress |
By Santiago on April 16, 2009
Based on, Smashing Magazine article, with this 5 new and totally killer WordPress hacks to make your blog stand out from the crowd. In each entry, you’ll find an explanation of the code as well as the kinds of problems that the hack solves. 1. Create TinyURLs On The Fly The problem. Because Twitter has [...]
Posted in WordPressCreme News | Tagged Hacks, How To, Resource, Snippet, Wordpress |
By Santiago on March 19, 2009
By default, WordPress category permalinks are displayed that way:
http://www.wordpresscreme.com/category/reviews
As you can see, the category in the url is pretty useless. Here’s how to remove it:
First backup your .htaccess file. Then, open it and append the following line:
RewriteRule ^category/(.+)$ http://www.yourblog.com/$1 [R=301,L]
Once saved, your categories pages will be displayed like this:
http://www.wordpresscreme.com/reviews
Posted in WordPressCreme News | Tagged .htaccess, Hacks, How To, Permalinks |