Explains how to disable Wordpress RSS / Atom / RSS2 feed url in 2 simple steps.
{ 14 comments }
From the category archives:
Explains how to disable Wordpress RSS / Atom / RSS2 feed url in 2 simple steps.
{ 14 comments }
You can easily set wordpress blog hosted in a subdirectory as a homepage. Let us assume that your blog is hosted at domain.com/blog/. To set home page for domain.com, create index.php in root directory and append the following code (note blog is hosted in /blog/ subdirectory):
<?php
/* Short and sweet */
define(‘WP_USE_THEMES’, true);
define(‘WP_IN_ROOTDIR’, true);
require(‘./blog/wp-blog-header.php’);
?>
Now if anyone visit [...]
{ 1 comment }
If you have two blogs installed on same domain, you may want to combine two blogs feed into one blog feed. It will provide few benefits:
a) Ease of feed management
b) More readers
c) Better feed stats and much more
Required tools
=> MagpieRSS rss parser for php (download link)
=> FeedCreator lets you easily create RSS 0.91, 1.0 [...]
{ 7 comments }
Recently, I saw few site displaying their feedburner feed count using html / text code. After googling I came across very nice plugin called Feed Count:
Feed Count 1.2 is the latest version of Wordpress Plugin that displays the number of subscribers to your feedburner feed in text. You don’t have to use the [...]
{ 0 comments }
Adding an html table to wordpress is problematic job in visual mode. My old solution was to go into text mode and enter html code. However there is a new plugin called WP-Table. It allows you to a table directly in the Visual mode or import from a spreadsheet. Cool isn’t it?
WP-table plugin to add [...]
{ 4 comments }
Thanks to mighty Google, now you can get FeedBurner Stats Pro and MyBrand version free of cost.
MyBrand is a premium FeedBurner service that allows publishers to showcase their feeds by serving them from their own domain. For example I can now use rss.theos.in instead of http://feeds.feedburner.com/ComputerTechnologyAndOsBlog
You need to setup a CNAME which is nothing [...]
{ 0 comments }
I’ve updated my blog few days back. But in case if you are still running 2.1.1 makes sure you get updated version.
This morning we received a note to our security mailing address about unusual and highly exploitable code in WordPress. The issue was investigated, and it appeared that the 2.1.1 download had been modified from [...]
{ 0 comments }
Recently I did setup a blog site for corporate client. This blog is only for company employees, its dealers/retailers business partners and other people related to core business. This blog is immediately pickup by both Google and Yahoo search engines.
They send me new request to remove blog from Google and Yahoo!. LOL, which is [...]
{ 2 comments }