<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Microments &#187; WordPress</title>
	<atom:link href="http://www.microments.com/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.microments.com</link>
	<description>Giving Details of Developments At Micro Level</description>
	<lastBuildDate>Thu, 29 Jul 2010 02:11:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>To Do List to Increase wordpress blog loading speed &#8211; Remove Themes Tags</title>
		<link>http://www.microments.com/to-do-list-to-increase-wordpress-blog-loading-speed-remove-themes-tags/622</link>
		<comments>http://www.microments.com/to-do-list-to-increase-wordpress-blog-loading-speed-remove-themes-tags/622#comments</comments>
		<pubDate>Mon, 28 Sep 2009 13:05:25 +0000</pubDate>
		<dc:creator>Webmaster Blog</dc:creator>
				<category><![CDATA[Programming and Technical Discussions]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://microments.com/?p=622</guid>
		<description><![CDATA[Free themes are designed to be as easy to install as possible. You simply upload your theme, activate it, and you&#8217;re done. It knows your blog&#8217;s name, description, feed URL and everything else. In order to know all of this, the theme uses PHP tags to get the information. However, it has to use these [...]]]></description>
			<content:encoded><![CDATA[<p>Free themes are designed to be <strong>as easy to install as possible</strong>. You simply upload your theme, activate it, and you&#8217;re done. It knows your blog&#8217;s name, description, feed URL and everything else.</p>
<p>In order to know all of this, the theme uses PHP tags to get the information. However, it has to <strong>use these tags every time a page is loaded</strong>.</p>
<p>As most of the information never changes, you can delete these tags from your theme, and <strong>replace them with normal text</strong>. That way, your server has less to process next time around.</p>
<h2>13 Common Tags in WordPress Themes</h2>
<p>The easiest way to replace the tags is to <strong>load up a page from your blog</strong>, then &#8220;View Source.&#8221; Now go through your theme and look for the following tags, then find what each tag corresponds to in your page source. <strong>Paste the text from the page source over the theme tags</strong>.</p>
<p>Save the files after every change and check that <strong>the new version of the page is identical to the old</strong>.</p>
<ol class="space">
<li><strong>&lt;?php language_attributes(); ?&gt;</strong> found in <em>header.php</em>.</li>
<li><strong>&lt;?php bloginfo(&#8216;html_type&#8217;); ?&gt;</strong> found in <em>header.php</em>.</li>
<li><strong>&lt;?php bloginfo(&#8216;charset&#8217;); ?&gt;</strong> found in <em>header.php</em>.</li>
<li><strong>&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;</strong> found throughout the theme.</li>
<li><strong>&lt;meta name=&#8221;generator&#8221; content=&#8221;WordPress &lt;?php bloginfo(&#8216;version&#8217;); ?&gt;&#8221; /&gt; &lt;!&#8211; leave this for stats &#8211;&gt;</strong> found in <em>header.php</em>. If you&#8217;re using a 3rd party stats program (like Google Analytics) then you&#8217;ve nothing to worry about, and if your version of WordPress is out of date, you won&#8217;t want hackers knowing that.</li>
<li><strong>&lt;?php bloginfo(&#8216;stylesheet_url&#8217;); ?&gt;</strong> found in <em>header.php</em>.</li>
<li><strong>&lt;?php bloginfo(&#8216;rss2_url&#8217;); ?&gt;</strong> founder in <em>header.php</em>, <em>sidebar.php</em> and <em>footer.php</em>. Be careful if you switch to FeedBurner after doing this. Make sure you remember to update the feed URL here manually (The FeedSmith plugin won&#8217;t do it anymore).</li>
<li><strong>&lt;?php bloginfo(&#8216;pingback_url&#8217;); ?&gt;</strong> found in <em>header.php</em>.</li>
<li><strong>&lt;?php bloginfo(&#8216;stylesheet_directory&#8217;); ?&gt;</strong> found throughout the theme.</li>
<li><strong>&lt;?php bloginfo(&#8216;description&#8217;); ?&gt;</strong> found throughout the theme. Your site&#8217;s slogan.</li>
<li><strong>&lt;?php bloginfo(&#8216;comments_rss2_url&#8217;); ?&gt;</strong> found in sidebar.php and <em>footer.php</em>.</li>
<li><strong>&lt;!&#8211; &lt;?php echo get_num_queries(); ?&gt; queries. &lt;?php timer_stop(1); ?&gt; seconds. &#8211;&gt;</strong> found in <em>footer.php</em>. This HTML comment won&#8217;t be overly useful to many of us, so delete away!</li>
<li>If you are using widgets, you can also delete the code in <em>sidebar.php</em> between the lines<strong>&lt;?php     /* Widgetized sidebar, if you have the plugin installed. */<br />
if ( !function_exists(&#8216;dynamic_sidebar&#8217;) || !dynamic_sidebar() ) : ?&gt;</strong><br />
and<br />
<strong>&lt;?php endif; ?&gt; </strong><br />
Content between these 2 lines is <strong>only used if widgets are not enabled</strong>. If you know that you will continue to use widgets, then there is<strong> no need for any code </strong>here (It may be worth leaving a comment along the lines of &#8220;<em>Content here used if widgets are disabled</em>&#8221; to remind yourself of this in the future).</li>
</ol>
<p>By removing these, you&#8217;ll shave the load of your server and pages will be constructed that bit faster.</p>
<p style='text-align:left'>&copy; 2009, <a href='http://www.microments.com'>Webmaster Blog</a>. All rights reserved. On republishing this post you must provide link to original post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.microments.com/to-do-list-to-increase-wordpress-blog-loading-speed-remove-themes-tags/622/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Your WordPress Blog Load Faster &#8211; Improve loading speed</title>
		<link>http://www.microments.com/make-your-wordpress-blog-load-faster-improve-loading-speed/471</link>
		<comments>http://www.microments.com/make-your-wordpress-blog-load-faster-improve-loading-speed/471#comments</comments>
		<pubDate>Mon, 14 Sep 2009 07:12:29 +0000</pubDate>
		<dc:creator>Webmaster Blog</dc:creator>
				<category><![CDATA[Programming and Technical Discussions]]></category>
		<category><![CDATA[Tricks and Tips]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://microments.com/?p=471</guid>
		<description><![CDATA[When people come to your Blog via a Search engine.. you just get maximum 10 seconds to hold their attention. If thats not enough to Load your Blog , then you are gone&#8230;. A good web host is essential, although, ensuring your blog not wasting valuable bandwidth on poorly optimized images, and unnecessary scripts and [...]]]></description>
			<content:encoded><![CDATA[<p>When people come to your Blog via a Search engine.. you just get maximum 10 seconds to hold their attention. If thats not enough to Load your Blog , then you are gone&#8230;.<br />
A good web host is essential, although, ensuring your blog not wasting valuable bandwidth on poorly optimized images, and unnecessary scripts and widgets is also important. So how do you optimize your Blog for the best performance? Here are some key tips:</p>
<h4><strong>Optimize Images</strong></h4>
<p>I think having attractive images in your articles is a key part of blogging, but I also think you need to optimize images so that they not any larger than they need to be. If you are lucky enough to have a copy of Photoshop, it is ideal for this task. A few rules which will help you out are:</p>
<ul>
<li>Save images that use a limited pallet as .gif or .PNG. i.e a logo that just uses red, white and blue.</li>
<li>Save images that use the full color spectrum of colors as .jpg i.e a photo of yourself.</li>
</ul>
<p>If you are saving for the Internet you should use â€œSave for webâ€. The aim is to get the final file size as small as possible without wrecking the appearance of the image.</p>
<p><strong>PNG &amp; Gif (indexed):</strong> Set the total amount of color to the lowest value possible without effecting appearance of the product. You can play with dither, for some images it will help remove artifacts, by adding a bit of noise. Raise the value of Web snap as high as you can go without making the final product look ugly.</p>
<p><strong>Jpg (RGB):</strong> Lower the quality to as low as possible without making the final product look ugly, and without adding too many artifacts, you can also add some blur which may remove so ugly artifacts, but donâ€™t get too carried away.<br />
Make sure that if you are resizing images that you set the mode to RGB. Indexed images donâ€™t resize well.You should ensure that images are cropped to remove any unnecessary parts, and resized to the correct final size. Donâ€™t waste valuable bandwidth by using html code to resize an image.</p>
<h4><strong>Use A Minimalist Theme</strong></h4>
<p>Attractive graphics and excessive use of plug-ins in your theme can add to the file size of your site, and raise your loading time. So selecting a minimalist theme is a great way to reduce the size of your Blog.</p>
<h4><strong>Compress the Stylesheet and Javascript files used</strong></h4>
<p>You can compress Javascript and the Stylesheet used in your theme. To compress Javascript you can use a <a href="http://javascriptcompressor.com/">Javascript compressor</a>. For the CSS files, you can remove the comments, and remove blank lines and spaces using your favorite text editor. This will optimize your set up a small amount.</p>
<h4><strong>Reduce Overall Latency by Reducing HTTP Requests</strong></h4>
<p><a href="http://www.planetenjoy.com/technology/804_simple-ways-to-speed-up-your-site">PlanetEnjoy</a> writes about the importance of reducing HTTP requests:</p>
<blockquote><p>Every HTTP request, or loading each item on your website, has an average round-trip latency of 0.2 seconds. So if your site is loading 20 items, regardless of whether they are stylesheets, images or scripts, that equates to 4 seconds in latency alone (on your average broadband connection).</p></blockquote>
<p>So it is important to ensure that you are not including an unnecessary amount of HTTP requests.</p>
<h4><strong>Donâ€™t Rely on Other Sites!</strong></h4>
<p>If you are loading content from other web sites it is going to slow your loading time. For example both the widgets at the bottom of this page load from other servers, Blogrush and Blogcatlog. If either of these servers are having bad days the widgets can take an age to load. This is part of the reason why I have them in the footer, so any lag doesnâ€™t stop any other content from loading. Ad networks, badges, widgets, images, scripts may all be loading content from other servers. For optimal performance you need to rely as little as possible on other servers.</p>
<p style='text-align:left'>&copy; 2009, <a href='http://www.microments.com'>Webmaster Blog</a>. All rights reserved. On republishing this post you must provide link to original post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.microments.com/make-your-wordpress-blog-load-faster-improve-loading-speed/471/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make WordPress Blog Mobile Compatible Instantly &#8211; List Of Best Plugins ( WordPress Mobile Version )</title>
		<link>http://www.microments.com/make-wordpress-blog-mobile-compatible-instantly-list-of-best-plugins-wordpress-mobile-version/387</link>
		<comments>http://www.microments.com/make-wordpress-blog-mobile-compatible-instantly-list-of-best-plugins-wordpress-mobile-version/387#comments</comments>
		<pubDate>Fri, 21 Aug 2009 02:48:23 +0000</pubDate>
		<dc:creator>Webmaster Blog</dc:creator>
				<category><![CDATA[Programming and Technical Discussions]]></category>
		<category><![CDATA[Web Developments]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://microments.com/?p=387</guid>
		<description><![CDATA[If you looking to make your WordPress blog more mobile friendly, look no further than MobilePress â€“ itâ€™s a free WordPress plugin that instantly provides a great looking mobile version of your site. You have the freedom to design your own mobile themes if you arenâ€™t too happy with the defaults. What I also liked [...]]]></description>
			<content:encoded><![CDATA[<p>If you looking to make your WordPress blog more mobile friendly, look no further than <strong><a href="http://mobilepress.co.za/">MobilePress</a> </strong>â€“ itâ€™s a free WordPress plugin that instantly provides a great looking mobile version of your site.</p>
<p><img title="Mobilepress wordpress plugins" src="http://i449.photobucket.com/albums/qq214/mandar5/mobilepress-wordpress-plugins.png" alt="Mobilepress wordpress plugins" width="445" height="149" /></p>
<p>You have the freedom to design your own mobile themes if you arenâ€™t too happy with the defaults. What I also liked about Mobile Press is that it tweak the layout based on the mobile phone browser.</p>
<p>So if someone is reading your site on an iPhone, heâ€™ll see a more iPhone like layout that will be different from what is displayed on a mobile phone with Opera Mini or say Windows Mobile.</p>
<p style='text-align:left'>&copy; 2009, <a href='http://www.microments.com'>Webmaster Blog</a>. All rights reserved. On republishing this post you must provide link to original post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.microments.com/make-wordpress-blog-mobile-compatible-instantly-list-of-best-plugins-wordpress-mobile-version/387/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress.tv &#8211; New space to geek out and learn all about WordPress</title>
		<link>http://www.microments.com/wordpress-tv-new-space-to-geek-out-and-learn-all-about-wordpress/327</link>
		<comments>http://www.microments.com/wordpress-tv-new-space-to-geek-out-and-learn-all-about-wordpress/327#comments</comments>
		<pubDate>Wed, 12 Aug 2009 13:23:07 +0000</pubDate>
		<dc:creator>Webmaster Blog</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Technology News]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://microments.com/?p=327</guid>
		<description><![CDATA[WordPress have switched on WordPress.tv, your visual resource for all things WordPress. On WordPress.tv, youâ€™ll find tutorials for both WordPress self-installs and WordPress.com to help you get blogging fast and hassle-free. Weâ€™ve kicked things off with the basics â€” now you can shape what comes next. Just drop them a line and let them know [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress have switched on <a href="http://wordpress.tv/">WordPress.tv</a>, your visual resource for all things WordPress.</p>
<p><object width="442" height="249" data="http://v.wordpress.com/DEesBAlR" type="application/x-shockwave-flash"><param name="src" value="http://v.wordpress.com/DEesBAlR" /><param name="allowfullscreen" value="true" /></object></p>
<p>On WordPress.tv, youâ€™ll find <a href="http://wordpress.tv/category/how-to/">tutorials</a> for both <a href="http://www.wordpress.org/">WordPress</a> self-installs and <a href="http://www.wordpress.com/">WordPress.com</a> to help you get blogging fast and hassle-free. Weâ€™ve kicked things off with the basics â€” now you can shape what comes next. Just <a href="http://wordpress.tv/contact/">drop them a line</a> and let them know what youâ€™d like to see added.</p>
<p>WordPress.tv is also now <em>the</em> place to find all that awesome  <a href="http://central.wordcamp.org/">WordCamp</a> footage that was floating around the web without a home. See the presentations you missed and get a peek at behind-the-scenes action. We call it <a href="http://wordpress.tv/category/wordcamptv/">WordCampTV</a>.</p>
<p>Youâ€™ll also find slideshows of presentations made by <a href="http://automattic.com/about/">Automattic employees</a> and other WordPress gurus, plus interviews Iâ€™ve done with the media and fellow bloggers.</p>
<p>They hope youâ€™ll consider WordPress.tv not just a <a href="http://www.wordpress.org/support">support</a> resource, but also a place to hang out and keep up with all the geeky goodness going on in the WordPress community. Tune in regularly for fresh content and updates to the <a href="http://blog.wordpress.tv/">WordPress.tv blog</a>. Lots more is on the way.</p>
<p><strong><a href="http://wordpress.org/development/2009/01/wordpresstv/">Main Announcement Link</a></strong></p>
<p style='text-align:left'>&copy; 2009, <a href='http://www.microments.com'>Webmaster Blog</a>. All rights reserved. On republishing this post you must provide link to original post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.microments.com/wordpress-tv-new-space-to-geek-out-and-learn-all-about-wordpress/327/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix WordPress Upgrade White Blank Page Problem</title>
		<link>http://www.microments.com/fix-wordpress-upgrade-white-blank-page-problem/279</link>
		<comments>http://www.microments.com/fix-wordpress-upgrade-white-blank-page-problem/279#comments</comments>
		<pubDate>Sun, 02 Aug 2009 00:49:48 +0000</pubDate>
		<dc:creator>Webmaster Blog</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Programming and Technical Discussions]]></category>
		<category><![CDATA[Tricks and Tips]]></category>
		<category><![CDATA[Trick]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://microments.com/?p=279</guid>
		<description><![CDATA[WordPress a best blogging platform recently released its one of major release. WordPress has come up with new admin interface and nearly every task you do on your blog will take fewer clicks and be faster in 2.7 than it did in a previous version. As usual users got eager to upgrade their blog to [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><strong>WordPress </strong>a best blogging platform recently released its one of major release. WordPress has come up with <strong>new admin interface</strong> and nearly every task you do on your blog will <strong>take fewer clicks and be faster</strong> in 2.7 than it did in a previous version. As usual users got <strong>eager to upgrade their blog to wordpress 2.7</strong>.</p>
<p class="MsoNormal">It is just a day after wordpress 2.7 release and we have already started seeing users reporting issue with <strong>WordPress 2.7 Upgrade</strong>. One such issue which has been faced by many users is getting <strong>white blank page</strong> after upgrading to wordpress 2.7. After researching around we have some fix which might help you to solve <strong>wordpress 2.7 upgrade white blank page issue</strong> and some other issues.</p>
<p class="MsoNormal">Many users reporting that after upgrading to wordpress 2.7 when they are trying to login to admin dashboard they are greeted with a white Blank page. Thought there is no word from wordpress team about any possibility of bug or issue but some of fixes which might solve this issue are here,</p>
<h3>Fix for WordPress  White Blank Page Issue</h3>
<p class="MsoNormal">If you are using wp-cache or super-cache plugin then please refresh your cache files and then try to login to wordpress admin dashboard</p>
<h3>Fix for WordPress Admin Menu Link Problem.</h3>
<p class="MsoNormal">Renaming index.php file present in wp-plugin directory to index.html.</p>
<h3>Fix WordPress all post, pages, website, blog not getting displayed</h3>
<p class="MsoNormal">This issue is because of <strong>incompatible WordPress theme</strong>. Change your theme from WordPress admin panel to default theme for time being. Double check you theme before proceeding for WordPress Upgrade. Ask Theme author to make it compatible with wordpress.<span> </span></p>
<h3>Please Note:</h3>
<p class="MsoNormal">1. Make sure you have <strong>disabled all plugins</strong> which are not compactable with wordpress</p>
<p class="MsoNormal">2. Do <strong>backup your whole wordpress blog</strong>, database as well as core files.</p>
<p class="MsoNormal">3. If some thing goes wrong and you need to revert back or say need to <strong>downgrade to wordpress 2.6.x or 2.5.x</strong> then apply database backup first and then replace wordpress files</p>
<p class="MsoNormal">4. Read detailed steps for <a title="WordPress Upgrading Guide" onclick="javascript:pageTracker._trackPageview('/outbound/article/codex.wordpress.org');" href="http://codex.wordpress.org/Upgrading_WordPress_Extended" target="_blank">Upgrading WordPress Extended</a> before proceeding for <strong>WordPress Upgrade</strong>.</p>
<p style='text-align:left'>&copy; 2009, <a href='http://www.microments.com'>Webmaster Blog</a>. All rights reserved. On republishing this post you must provide link to original post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.microments.com/fix-wordpress-upgrade-white-blank-page-problem/279/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now Remove category word from WordPress category URL</title>
		<link>http://www.microments.com/now-remove-category-word-from-wordpress-category-url/96</link>
		<comments>http://www.microments.com/now-remove-category-word-from-wordpress-category-url/96#comments</comments>
		<pubDate>Sat, 11 Jul 2009 17:05:17 +0000</pubDate>
		<dc:creator>Webmaster Blog</dc:creator>
				<category><![CDATA[Programming and Technical Discussions]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://microments.com/?p=96</guid>
		<description><![CDATA[By Default, WordPress Category URL is http://microments.com/category/web-hosting This doesnâ€™t looks good and not so Search engine friendly; if you are thinking of making it something like http://microments.com/web-hosting Itâ€™s pretty and comparatively more SEO friendly, You will need to remove the word â€œcategoryâ€ from the existing URL to make it look like this. If you no [...]]]></description>
			<content:encoded><![CDATA[<p>By Default, WordPress Category URL is</p>
<blockquote>
<pre>http://microments.com/category/web-hosting<span id="more-96"></span></pre>
</blockquote>
<p>This doesnâ€™t looks good and not so Search engine friendly; if you are thinking of making it something like</p>
<blockquote>
<pre>http://microments.com/web-hosting</pre>
</blockquote>
<p>Itâ€™s pretty and comparatively more SEO friendly, You will need to remove the word â€œcategoryâ€ from the existing URL to make it look like this.</p>
<p>If you no more find that word important, open .htaccess file from the root directory of your blog installation and add the following line:</p>
<blockquote>
<pre>RewriteRule ^category/(.+)$ http://www.yourblog.com/$1 [R=301,L]</pre>
</blockquote>
<p>Done! Save he changes made and all your URLs will now look like this:</p>
<blockquote>
<pre>http://microments.com/web-hosting</pre>
</blockquote>
<p><strong>Note :</strong> If your blog is older then Search engines might have crawled older URL which will now show 404 error after changes so, it is recommended for newly setup blogs.</p>
<p style='text-align:left'>&copy; 2009, <a href='http://www.microments.com'>Webmaster Blog</a>. All rights reserved. On republishing this post you must provide link to original post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.microments.com/now-remove-category-word-from-wordpress-category-url/96/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Me Social &#8211; WordPress Plugin &#8211; Automatically Submit New Posts to Social Bookmarking Sites</title>
		<link>http://www.microments.com/make-me-social-wordpress-plugin-automatically-submit-new-posts-to-social-bookmarking-sites/90</link>
		<comments>http://www.microments.com/make-me-social-wordpress-plugin-automatically-submit-new-posts-to-social-bookmarking-sites/90#comments</comments>
		<pubDate>Fri, 10 Jul 2009 11:26:22 +0000</pubDate>
		<dc:creator>Webmaster Blog</dc:creator>
				<category><![CDATA[Freewares and Betas]]></category>
		<category><![CDATA[Programming and Technical Discussions]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://microments.com/?p=90</guid>
		<description><![CDATA[Initially I had developed this plugin for personal use but I thought that lot of people will need it. So I give it to everyone for free! It is a big key to success and I have attached some stats at the end. What is this plugin about? Make Me Social is the WordPress plugin [...]]]></description>
			<content:encoded><![CDATA[<p>Initially I had developed this plugin for personal use but I thought that lot of people will need it. So I give it to everyone for free! It is a big key to success and I have attached some stats at the end.<span id="more-90"></span></p>
<p><strong>What is this plugin about? </strong></p>
<blockquote><p>Make Me Social is the WordPress plugin which will send each new post you make to the most famous social services. This practically means instant traffic to your blog as soon as you publish a new post, helping it to become famous in a few seconds.</p></blockquote>
<p><strong>How it works? </strong></p>
<blockquote><p>Make Me Social automatically submit new post to Twitter, Delicious, Tumblr and Diigo. Thus instant traffic to your blog as soon as you publish a new post, helping it to become famous in a few seconds.</p></blockquote>
<p><img title="Stats" src="http://i637.photobucket.com/albums/uu94/tecdna/statsproof.jpg" border="0" alt="Stats" width="551" height="95" /><br />
<small>10-15x more visitors and spiders in just 3 days</small></p>
<p><strong>Requirements</strong></p>
<blockquote><p>The chances are 99% that you are okay with them. You need WordPress 2.6, 2.7 or 2.8.* A server with PHP 5 and support for the curl and file_get_contents functions (they are supported by almost all the web hosting companies).</p>
<p>However, if posting to Twitter, Tumblr and Diigo does not work, then curl is not enabled on your host. If posting to Delicious does not work, then the file_get_contents function is disabled on your host. But as I already said, these cases are extremely rare.</p></blockquote>
<p><strong>Instructions </strong></p>
<p>The installation and configuration is very easy and takes only 1 minute.</p>
<ul>
<li> Open the file makemesocial.php with your favorite text editor.</li>
<li>Change the $twitter_username, $twitter_password, $tumblr_email, $tumblr_password to match the credentials of your accounts on the relevant social bookmarking services.</li>
</ul>
<p>Now save the file makemesocial.php and upload it to your wp-content/plugins directory. Visit your WordPress Dashboard and activate the Make Me Social Plugin. You are ready! <img src='http://www.microments.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Every new post you publish from now on, will be sent to Delicious, Twitter, Tumblr and Diigo. Good luck and enjoy your continuously increasing traffic!</p>
<h2><strong><span style="color: #ff0000;">Download </span></strong><strong>- <a href="http://wordpress.org/extend/plugins/make-me-social-automatically-submit-posts-to-delicious-twitter-tumblr-diigo/">Make Me Social &#8211; WordPress Plugin</a></strong></h2>
<p><strong>Screenshots</strong></p>
<blockquote>
<div class="wp-caption alignnone" style="width: 442px"><strong><strong><img title="Edit Make Me Social PHP File using Notepad or any other software" src="http://i637.photobucket.com/albums/uu94/tecdna/notepad.png" alt="Edit Make Me Social PHP File using Notepad or any other software" width="432" height="284" /></strong></strong><p class="wp-caption-text">Edit Make Me Social PHP File using Notepad or any other software</p></div></blockquote>
<blockquote>
<div class="wp-caption alignnone" style="width: 440px"><strong><strong><img title="Twitter Page Demo - Works Great" src="http://i637.photobucket.com/albums/uu94/tecdna/twitter.png" alt="Twitter Page Demo - Works Great" width="430" height="334" /></strong></strong><p class="wp-caption-text">Twitter Page Demo - Works Great</p></div></blockquote>
<blockquote>
<div class="wp-caption alignnone" style="width: 442px"><strong><strong><img title="Diigo Page Demo - Works Great" src="http://i637.photobucket.com/albums/uu94/tecdna/Diigo.png" alt="Diigo Page Demo - Works Great" width="432" height="147" /></strong></strong><p class="wp-caption-text">Diigo Page Demo - Works Great</p></div></blockquote>
<blockquote>
<div class="wp-caption alignnone" style="width: 436px"><strong><strong><img title="Delicious Page Demo - Works Great" src="http://i637.photobucket.com/albums/uu94/tecdna/Delicious.png" alt="Delicious Page Demo - Works Great" width="426" height="270" /></strong></strong><p class="wp-caption-text">Delicious Page Demo - Works Great</p></div></blockquote>
<p><strong>Future Plans<br />
</strong></p>
<ul>
<li>Dashboard Settings &#8211; I am working on user friendly dashboard settings</li>
<li>Automatic Tags &#8211; Superior tagging system which will be based on topic title</li>
</ul>
<p><strong>Testimonials</strong></p>
<blockquote><p>A new blog I created last month was getting around around 50-100 unique daily visitors. Although I was updating it often, this was not changing. After installing this plugin. You can see how the stats jumped suddenly. Now I get 700-900 unique daily visitors and it is still rising. Also, the visits from search engine spiders have increased from 20-30 to 300-500 daily. &#8211; <em>Alex G</em></p></blockquote>
<blockquote><p>The best thing is that after auto posting to Twitter, lot of other blog owners are now finding my posts and linking to them.  In only 3 days I got more than 80 original backlinks from other blogs and forums to my blog posts. Before installing the plugin, I had no backlinks at all.  With its turn, this had as a result that many of my posts got a high rank at Google search results (some appear on the 1st page, just 1 hour after posting them to my blog). This was not happening for a whole month before installing the plugin, although I was updating my blog with the same frequency. &#8211; <em>Nyk</em> S</p></blockquote>
<p><strong>Important:</strong> If you already have another plugin for auto posting to Twitter, disable it, else your posts will be twitted twice!</p>
<p style='text-align:left'>&copy; 2009, <a href='http://www.microments.com'>Webmaster Blog</a>. All rights reserved. On republishing this post you must provide link to original post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.microments.com/make-me-social-wordpress-plugin-automatically-submit-new-posts-to-social-bookmarking-sites/90/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Solution for WordPress Feed XML Parsing Error &#8211; XML or text declaration not at start of entity</title>
		<link>http://www.microments.com/solution-for-wordpress-feed-xml-parsing-error-xml-or-text-declaration-not-at-start-of-entity/75</link>
		<comments>http://www.microments.com/solution-for-wordpress-feed-xml-parsing-error-xml-or-text-declaration-not-at-start-of-entity/75#comments</comments>
		<pubDate>Tue, 07 Jul 2009 01:57:44 +0000</pubDate>
		<dc:creator>Webmaster Blog</dc:creator>
				<category><![CDATA[Programming and Technical Discussions]]></category>
		<category><![CDATA[Feed]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://microments.com/?p=75</guid>
		<description><![CDATA[My RSS feeds started to act weird this evening. The FireFox browser gave this error when I tried to view the feed. â€œXML Parsing Error: xml declaration not at start of external entity â€¦ Line Number 2, Column 1:&#60;?xml version=â€1.0â€³ encoding=â€UTF-8â€³?&#62;â€ The problem was caused by one of my plugins that inserted a blank line [...]]]></description>
			<content:encoded><![CDATA[<p>My RSS feeds started to act weird this evening.</p>
<p>The FireFox browser gave this error when I tried to view the feed.</p>
<p>â€œ<strong>XML Parsing Error: xml declaration not at start of external entity â€¦ Line Number 2, Column 1:&lt;?xml version=â€1.0â€³ encoding=â€UTF-8â€³?&gt;</strong>â€<span id="more-75"></span></p>
<p>The problem was caused by one of my plugins that inserted a blank line at the top of the RSS feeds.</p>
<p>The solution is to find that offensive plugin and remove any leading or trailing lines before and after the &lt;?php and ?&gt; PHP code respectively.</p>
<h2>Solution</h2>
<div class="docbody">
<ul>
<li>Check your <code>wp-rss2.php</code> and <code>wp-atom.php</code> files for blank lines outside of <code>&lt;?</code> and <code>?&gt;</code> bracketed sections.</li>
<li>Check your <code>wp-config.php</code> file for blank lines outside of <code>&lt;?</code> and <code>?&gt;</code> bracketed sections.</li>
<li>Check your theme&#8217;s <code>functions.php</code> file for  blank lines outside of <code>&lt;?</code> and <code>?&gt;</code> bracketed sections.</li>
<li>One by one, disable plugins and revalidate until you isolate the one causing the problem.</li>
</ul>
</div>
<p>I hope this helps you if youâ€™ve faced a similar problem.</p>
<p style='text-align:left'>&copy; 2009, <a href='http://www.microments.com'>Webmaster Blog</a>. All rights reserved. On republishing this post you must provide link to original post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.microments.com/solution-for-wordpress-feed-xml-parsing-error-xml-or-text-declaration-not-at-start-of-entity/75/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Increase loading speed of WordPress blog by removing php tags from theme</title>
		<link>http://www.microments.com/increase-loading-speed-of-wordpress-blog-by-removing-php-tags-from-theme/73</link>
		<comments>http://www.microments.com/increase-loading-speed-of-wordpress-blog-by-removing-php-tags-from-theme/73#comments</comments>
		<pubDate>Tue, 07 Jul 2009 01:53:59 +0000</pubDate>
		<dc:creator>Webmaster Blog</dc:creator>
				<category><![CDATA[Tricks and Tips]]></category>
		<category><![CDATA[Trick]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://microments.com/?p=73</guid>
		<description><![CDATA[Free themes are designed to be as easy to install as possible. You simply upload your theme, activate it, and you&#8217;re done. It knows your blog&#8217;s name, description, feed URL and everything else. In order to know all of this, the theme uses PHP tags to get the information. However, it has to use these [...]]]></description>
			<content:encoded><![CDATA[<p>Free themes are designed to be <strong>as easy to install as possible</strong>. You simply upload your theme, activate it, and you&#8217;re done. It knows your blog&#8217;s name, description, feed URL and everything else.<span id="more-73"></span></p>
<p>In order to know all of this, the theme uses PHP tags to get the information. However, it has to <strong>use these tags every time a page is loaded</strong>.</p>
<p>As most of the information never changes, you can delete these tags from your theme, and <strong>replace them with normal text</strong>. That way, your server has less to process next time around.</p>
<h2>13 Common Tags in WordPress Themes</h2>
<p>The easiest way to replace the tags is to <strong>load up a page from your blog</strong>, then &#8220;View Source.&#8221; Now go through your theme and look for the following tags, then find what each tag corresponds to in your page source. <strong>Paste the text from the page source over the theme tags</strong>.</p>
<p>Save the files after every change and check that <strong>the new version of the page is identical to the old</strong>.</p>
<ol class="space">
<li><strong>&lt;?php language_attributes(); ?&gt;</strong> found in <em>header.php</em>.</li>
<li><strong>&lt;?php bloginfo(&#8216;html_type&#8217;); ?&gt;</strong> found in <em>header.php</em>.</li>
<li><strong>&lt;?php bloginfo(&#8216;charset&#8217;); ?&gt;</strong> found in <em>header.php</em>.</li>
<li><strong>&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;</strong> found throughout the theme.</li>
<li><strong>&lt;meta name=&#8221;generator&#8221; content=&#8221;WordPress &lt;?php bloginfo(&#8216;version&#8217;); ?&gt;&#8221; /&gt; &lt;!&#8211; leave this for stats &#8211;&gt;</strong> found in <em>header.php</em>. If you&#8217;re using a 3rd party stats program (like Google Analytics) then you&#8217;ve nothing to worry about, and if your version of WordPress is out of date, you won&#8217;t want hackers knowing that.</li>
<li><strong>&lt;?php bloginfo(&#8216;stylesheet_url&#8217;); ?&gt;</strong> found in <em>header.php</em>.</li>
<li><strong>&lt;?php bloginfo(&#8216;rss2_url&#8217;); ?&gt;</strong> founder in <em>header.php</em>, <em>sidebar.php</em> and <em>footer.php</em>. Be careful if you switch to FeedBurner after doing this. Make sure you remember to update the feed URL here manually (The FeedSmith plugin won&#8217;t do it anymore).</li>
<li><strong>&lt;?php bloginfo(&#8216;pingback_url&#8217;); ?&gt;</strong> found in <em>header.php</em>.</li>
<li><strong>&lt;?php bloginfo(&#8216;stylesheet_directory&#8217;); ?&gt;</strong> found throughout the theme.</li>
<li><strong>&lt;?php bloginfo(&#8216;description&#8217;); ?&gt;</strong> found throughout the theme. Your site&#8217;s slogan.</li>
<li><strong>&lt;?php bloginfo(&#8216;comments_rss2_url&#8217;); ?&gt;</strong> found in sidebar.php and <em>footer.php</em>.</li>
<li><strong>&lt;!&#8211; &lt;?php echo get_num_queries(); ?&gt; queries. &lt;?php timer_stop(1); ?&gt; seconds. &#8211;&gt;</strong> found in <em>footer.php</em>. This HTML comment won&#8217;t be overly useful to many of us, so delete away!</li>
<li>If you are using widgets, you can also delete the code in <em>sidebar.php</em> between the lines<strong>&lt;?php     /* Widgetized sidebar, if you have the plugin installed. */<br />
if ( !function_exists(&#8216;dynamic_sidebar&#8217;) || !dynamic_sidebar() ) : ?&gt;</strong><br />
and<br />
<strong>&lt;?php endif; ?&gt; </strong><br />
Content between these 2 lines is <strong>only used if widgets are not enabled</strong>. If you know that you will continue to use widgets, then there is<strong> no need for any code </strong>here (It may be worth leaving a comment along the lines of &#8220;<em>Content here used if widgets are disabled</em>&#8221; to remind yourself of this in the future).</li>
</ol>
<p>By removing these, you&#8217;ll shave the load of your server and pages will be constructed that bit faster.</p>
<p style='text-align:left'>&copy; 2009, <a href='http://www.microments.com'>Webmaster Blog</a>. All rights reserved. On republishing this post you must provide link to original post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.microments.com/increase-loading-speed-of-wordpress-blog-by-removing-php-tags-from-theme/73/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
