<?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>TutZone</title> <atom:link href="http://tutzone.net/feed/" rel="self" type="application/rss+xml" /><link>http://tutzone.net</link> <description>Tutorials, Design News, and Inspiration</description> <lastBuildDate>Wed, 05 Oct 2011 14:54:21 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.2.1</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>How To Change WordPress 3.2 HTML Editor Font</title><link>http://tutzone.net/change-wordpress-3-2-html-editor-font/</link> <comments>http://tutzone.net/change-wordpress-3-2-html-editor-font/#comments</comments> <pubDate>Wed, 24 Aug 2011 17:28:13 +0000</pubDate> <dc:creator>Bariski</dc:creator> <category><![CDATA[Wordpress]]></category><guid
isPermaLink="false">http://tutzone.net/?p=507</guid> <description><![CDATA[The new WordPress's HTML editor uses monospace font for editing, which I personally don't like at all. If you are among folks who don't appreciate it and want to change, this simple to follow tutorial will help you out.]]></description> <content:encoded><![CDATA[<p>The new WordPress&#8217;s HTML editor uses monospace font for editing, which I personally don&#8217;t like at all. If you are among folks who don&#8217;t appreciate it and want to change, this simple to follow tutorial will help you out.</p><div
style="text-align: center;"><h3>Procedure:</h3></div><p><span
style="color: rgb(255, 0, 0);"><strong>Note:</strong> Do take backup of the files before you try this.</span></p><p><strong>01.</strong> Login to your WordPress administration panel and go to <strong>Appearance => Editor => Theme Functions (functions.php)</strong></p><p><strong>02.</strong> Once there place this below code before <strong>?&gt;</strong>:</p><div
class="code"><code>add_action( 'admin_head-post.php', 'devpress_fix_html_editor_font' );<br
/> add_action( 'admin_head-post-new.php', 'devpress_fix_html_editor_font' );</p><p>function devpress_fix_html_editor_font() { ?&gt;<br
/> &lt;style type=&quot;text/css&quot;&gt;<br
/> #editorcontainer #content, #wp_mce_fullscreen {<br
/> font-family: Georgia, &quot;Times New Roman&quot;, &quot;Bitstream Charter&quot;, Times, serif;<br
/> }<br
/> &lt;/style&gt;<br
/> &lt;?php }</code></div><p><br/></p><p><strong>03.</strong> You can change the font to whatever you like.</p><p>This concludes this simple and useful tutorial. Hope you like it.</p> ]]></content:encoded> <wfw:commentRss>http://tutzone.net/change-wordpress-3-2-html-editor-font/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Fix Visual Editor In WordPress</title><link>http://tutzone.net/fix-visual-editor-wordpress/</link> <comments>http://tutzone.net/fix-visual-editor-wordpress/#comments</comments> <pubDate>Tue, 23 Aug 2011 12:48:37 +0000</pubDate> <dc:creator>Bariski</dc:creator> <category><![CDATA[Wordpress]]></category><guid
isPermaLink="false">http://tutzone.net/?p=506</guid> <description><![CDATA[WordPress's Visual Editor is not at all what they say it is, WYSIWYG (What You See Is What You Get). And if you got a theme or have built a theme which has custom div classes in it, WordPress's visual editor won't show them. To fix visual editor issue here is a simple to follow tutorial.]]></description> <content:encoded><![CDATA[<p>WordPress&#8217;s Visual Editor is not at all what they say it is, WYSIWYG (What You See Is What You Get). And if you got a theme or have built a theme which has custom div classes in it, WordPress&#8217;s visual editor won&#8217;t show them. To fix visual editor issue here is a simple to follow tutorial.</p><div
style="text-align: center;"><h3>Procedure:</h3></div><p><span
style="color: rgb(255, 0, 0);"><strong>Note:</strong> Do take backup of the files before you try this.</span></p><p><strong>01.</strong> Login to your WordPress administration panel and go to <strong>Appearance => Editor => Theme Functions (functions.php)</strong></p><p><strong>02.</strong> Once there place this below code before <strong>?&gt;</strong>:</p><div
class="code"><code>$your_custom_stylesheet = 'css/custom-editor-style.css';<br
/> add_editor_style($your_custom_stylesheet);</code></div><p><br/></p><p><strong>03.</strong> The parameter $your_custom_stylesheet is the name of the stylesheet, relative to the theme root. It also accepts an array of stylesheets. It is optional and defaults to &#8216;editor-style.css&#8217;.</p><p>This concludes this simple and useful tutorial. Hope you like it.</p><p><a
target="_blank" href="http://wp-snippets.com/1988/visual-editor-css/"><em>Source</em></a></p> ]]></content:encoded> <wfw:commentRss>http://tutzone.net/fix-visual-editor-wordpress/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How To Add A Copyright Text To Your Site</title><link>http://tutzone.net/add-copyright-text-site/</link> <comments>http://tutzone.net/add-copyright-text-site/#comments</comments> <pubDate>Mon, 22 Aug 2011 12:54:52 +0000</pubDate> <dc:creator>Bariski</dc:creator> <category><![CDATA[Wordpress]]></category><guid
isPermaLink="false">http://tutzone.net/?p=505</guid> <description><![CDATA[If you ever wondered how to display the copyright information in your WordPress blog, this simple tutorial is for you. With one line of code and step you could add a copyright information to your WordPress blog which also help you branding your site.]]></description> <content:encoded><![CDATA[<p>If you ever wondered how to display the copyright information in your WordPress blog, this simple tutorial is for you. With one line of code and step you could add a copyright information to your WordPress blog which also help you branding your site.</p><div
style="text-align: center;"><h3>Procedure:</h3></div><p><span
style="color: rgb(255, 0, 0);"><strong>Note:</strong> Do take backup of the files before you try this.</span></p><p><strong>01.</strong> Login to your WordPress administration panel and go to <strong>Appearance => Editor => Footer (footer.php)</strong></p><p><strong>02.</strong> Once there place this below code where you want to display your copyright information:</p><div
class="code"><code>&lt;b&gt;(c) &lt;?php echo date('Y'); ?&gt;&lt;/b&gt;<br
/> | &lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;&quot;&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/a&gt;<br
/> | &lt;?php bloginfo('description'); ?&gt;</code></div><p><br/></p><p>This concludes this simple and useful tutorial. Hope you like it.</p> ]]></content:encoded> <wfw:commentRss>http://tutzone.net/add-copyright-text-site/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How To Display Only Specific Category In Search Results</title><link>http://tutzone.net/how-to-display-only-specific-category-in-search-results/</link> <comments>http://tutzone.net/how-to-display-only-specific-category-in-search-results/#comments</comments> <pubDate>Fri, 17 Jun 2011 14:57:49 +0000</pubDate> <dc:creator>Bariski</dc:creator> <category><![CDATA[Wordpress]]></category> <category><![CDATA[Search]]></category><guid
isPermaLink="false">http://tutzone.net/?p=501</guid> <description><![CDATA[There are times when you make some specific category for just review or promotional stuff and would not want to get that included in your search results.]]></description> <content:encoded><![CDATA[<p>There are times when you make some specific category for just review or promotional stuff and would not want to get that included in your search results. This simple tutorial will help you to include only specified categories in your search results, so your users will have more accurate search results.</p><div
style="text-align: center;"><h3>Procedure:</h3></div><p><span
style="color: rgb(255, 0, 0);"><strong>Note:</strong> Do take backup of the files before you try this.</span></p><p><strong>01.</strong> Login to wordpress administration panel and go to <strong>Posts => Categories</strong></p><p><strong>02.</strong> Once there find the category you want to know the ID for and hover over it, you should see <strong>edit link</strong>. Right click on it and select Copy Link Location (in firefox) and then open a new tab and paste it there. You should see your category ID as <strong>tag_ID=xx</strong>. That <strong>xx</strong> is your category id.</p><p><strong>03.</strong> Place this code in your <strong>functions.php</strong> file:</p><div
class="code"><code>function searchcategory($query) {<br
/> if ($query-&gt;is_search) {<br
/> $query-&gt;set('cat','<strong>3</strong>,<strong>7</strong>');<br
/> }</p><p> return $query;<br
/> }</p><p>add_filter('pre_get_posts','searchcategory');</code></div><p><br/></p><p><strong>03.</strong> Simply change <strong>3</strong> and <strong>7</strong> to the categories you want to use for your search results, you can add as many as you want by separating them with commas (<strong>,</strong>).</p><p>This concludes this simple and useful tutorial. Hope you like it.</p> ]]></content:encoded> <wfw:commentRss>http://tutzone.net/how-to-display-only-specific-category-in-search-results/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>How To Automatically Backup Your WordPress Blog To Dropbox</title><link>http://tutzone.net/how-to-automatically-backup-your-wordpress-blog-to-dropbox/</link> <comments>http://tutzone.net/how-to-automatically-backup-your-wordpress-blog-to-dropbox/#comments</comments> <pubDate>Thu, 16 Jun 2011 12:16:48 +0000</pubDate> <dc:creator>Bariski</dc:creator> <category><![CDATA[Wordpress]]></category><guid
isPermaLink="false">http://tutzone.net/?p=500</guid> <description><![CDATA[If you are not registered with Dropbox yet, you are missing loads of online happiness. Dropbox is a cloud-based storage and file sharing service. It’s become very popular, due to its ease of use and the basic offer of 2GB of free storage space.]]></description> <content:encoded><![CDATA[<p>If you are not registered with Dropbox yet, you are missing loads of online happiness. Dropbox is a cloud-based storage and file sharing service. It’s become very popular, due to its ease of use and the basic offer of 2GB of free storage space. WordPress users can easily backup their site automatically to their Dropbox account. This simple tutorial will guide you how to do this. Hope you like it.</p><div
style="text-align: center;"><h3>Procedure:</h3></div><p><strong>01.</strong> Signup with Dropbox by following below link:</p><div
class="code"><a
target="_blank" rel="nofollow" href="https://www.dropbox.com/">https://www.dropbox.com/</a></div><p><br/></p><p><strong>02.</strong> Install this WordPress plugin and activate it:</p><div
class="code"><a
target="_blank" href="http://wordpress.org/extend/plugins/wordpress-backup-to-dropbox/">WordPress Backup to Dropbox</a></div><p><br/></p><p><strong>03.</strong> Authorize the plugin and let it access your Dropbox account. Then select the date and time and how frequently you want it to take the backup in your plugin settings page. You can save your backup locally (on your computer) as well.</p><p><strong>04.</strong> Just wait till the time arrives and voilla! the backup file is there in the specified location.</p><p>This concludes this simple and useful tutorial. Hope you like it.</p> ]]></content:encoded> <wfw:commentRss>http://tutzone.net/how-to-automatically-backup-your-wordpress-blog-to-dropbox/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>How To Add The Tumblr Share Button In WordPress</title><link>http://tutzone.net/how-to-add-the-tumblr-share-button-in-wordpress/</link> <comments>http://tutzone.net/how-to-add-the-tumblr-share-button-in-wordpress/#comments</comments> <pubDate>Wed, 15 Jun 2011 11:18:14 +0000</pubDate> <dc:creator>Bariski</dc:creator> <category><![CDATA[Blogger Tricks And Tutorials]]></category> <category><![CDATA[Tumblr]]></category> <category><![CDATA[Wordpress]]></category><guid
isPermaLink="false">http://tutzone.net/?p=499</guid> <description><![CDATA[f you are a blogger, you must have heard of Tumblr. Its a simple yet great blogging platform, which lets you focus on content. Though Tumblr is kindda late to the game in terms of blogging, but it has shown some good growth. ]]></description> <content:encoded><![CDATA[<p>If you are a blogger, you must have heard of Tumblr. Its a simple yet great blogging platform, which lets you focus on content. Though Tumblr is kindda late to the game in terms of blogging, but it has shown some good growth. If you ever wanted to add a Tumblr button on your blog, this simple tutorial is for you. Hope you like it.</p><div
style="text-align: center;"><h3>Procedure:</h3></div><p><span
style="color: rgb(255, 0, 0);"><strong>Note:</strong> Do take backup of the files before you try this.</span></p><p><strong>01.</strong> Place this code in your <strong>footer.php</strong> file:</p><div
class="code"><code>&lt;script type=&quot;text/javascript&quot; src=&quot;http://platform.tumblr.com/v1/share.js&quot;&gt;&lt;/script&gt;</code></div><p><br/></p><p><strong>02.</strong> Place below code where you want to display Tumble Share button:</p><div
class="code"><code>&lt;a href=&quot;http://www.tumblr.com/share&quot; title=&quot;Share on Tumblr&quot; style=&quot;display:inline-block; text-indent:-9999px; overflow:hidden; width:81px; height:20px; background:url('http://platform.tumblr.com/v1/share_1.png') top left no-repeat transparent;&quot;&gt;Share on Tumblr&lt;/a&gt;</code></div><p><br/></p><p><strong>03.</strong> If you want to further customize it, you can check this link out: <a
rel="nofollow" target="_blank" href="http://www.tumblr.com/docs/en/share_button">http://www.tumblr.com/docs/en/share_button</a></p><p>This concludes this simple and useful tutorial. Hope you like it.</p> ]]></content:encoded> <wfw:commentRss>http://tutzone.net/how-to-add-the-tumblr-share-button-in-wordpress/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>How to Add Google +1 Button To WordPress</title><link>http://tutzone.net/how-to-add-google-1-button-to-wordpress/</link> <comments>http://tutzone.net/how-to-add-google-1-button-to-wordpress/#comments</comments> <pubDate>Tue, 14 Jun 2011 08:10:22 +0000</pubDate> <dc:creator>Bariski</dc:creator> <category><![CDATA[Blogger Tricks And Tutorials]]></category> <category><![CDATA[Google]]></category><guid
isPermaLink="false">http://tutzone.net/?p=498</guid> <description><![CDATA[The launch of Google's +1 button has really created a buzz in the industry. Experts say, this can greatly affect the rankings of articles in search engine (Google). If you are using personalized Google search, then you would have noticed the effect already.]]></description> <content:encoded><![CDATA[<p>The launch of Google&#8217;s +1 button has really created a buzz in the industry. Experts say, this can greatly affect the rankings of articles in search engine (Google). If you are using personalized Google search, then you would have noticed the effect already. The sites whom you like most using the Google&#8217;s +1 button will appear higher on search engine rankings. This simple tutorial will help you integrate Google&#8217;s +1 button in your WordPress blog.</p><div
style="text-align: center;"><h3>Procedure:</h3></div><p><span
style="color: rgb(255, 0, 0);"><strong>Note:</strong> Do take backup of the files before you try this.</span></p><p><strong>01.</strong> Place this code in your <strong>footer.php</strong> or <strong>header.php</strong> file:</p><div
class="code"><code>&lt;script type=&quot;text/javascript&quot; src=&quot;https://apis.google.com/js/plusone.js&quot;&gt;&lt;/script&gt;</code></div><p><br/></p><p><strong>02.</strong> Place any of the below code depending on the button&#8217;s size:<br
/> <strong>Small:</strong></p><div
class="code"><code>&lt;g:plusone size=&quot;small&quot;&gt;&lt;/g:plusone&gt;</code></div><p><br/></p><p><strong>Medium:</strong></p><div
class="code"><code>&lt;g:plusone size=&quot;medium&quot;&gt;&lt;/g:plusone&gt;</code></div><p><br/></p><p><strong>Standard:</strong></p><div
class="code"><code>&lt;g:plusone&gt;&lt;/g:plusone&gt;</code></div><p><br/></p><p><strong>Tall:</strong></p><div
class="code"><code>&lt;g:plusone size=&quot;tall&quot;&gt;&lt;/g:plusone&gt;</code></div><p><br/></p><p>This concludes this simple and useful tutorial. Hope you like it.</p> ]]></content:encoded> <wfw:commentRss>http://tutzone.net/how-to-add-google-1-button-to-wordpress/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>How To Display Adsense Ads On Posts Older Than 4 Days</title><link>http://tutzone.net/how-to-display-adsense-ads-on-posts-older-than-4-days/</link> <comments>http://tutzone.net/how-to-display-adsense-ads-on-posts-older-than-4-days/#comments</comments> <pubDate>Mon, 13 Jun 2011 13:37:06 +0000</pubDate> <dc:creator>Bariski</dc:creator> <category><![CDATA[Blogger Tricks And Tutorials]]></category> <category><![CDATA[Adsense]]></category><guid
isPermaLink="false">http://tutzone.net/?p=496</guid> <description><![CDATA[Ever wanted to display your Adsense ads after a specific period of time, like displaying your ads only on the articles older than 4 days.]]></description> <content:encoded><![CDATA[<p>Ever wanted to display your Adsense ads after a specific period of time, like displaying your ads only on the articles older than 4 days. This can greatly improve your adsense income and your readership as the regular readers on your blog will feel privileged and most of the traffic coming to older articles will be from search engines which will result in high RPM. This simple tutorial will help you along.</p><div
style="text-align: center;"><h3>Procedure:</h3></div><p><span
style="color: rgb(255, 0, 0);"><strong>Note:</strong> Do take backup of the file before you try this.</span></p><p><strong>01.</strong> Place this code in your <strong>single.php</strong> file where you want to display your adsense ad:</p><div
class="code"><code>&lt;?php<br
/> if (strcmp( date(&quot;Y-m-d&quot;, strtotime(&quot;-<strong>4</strong> day&quot;)), get_the_time(&quot;Y-m-d&quot;) ) &gt; 0) {<br
/> ?&gt;</p><p><strong>INSERT YOUR AD CODE HERE</strong></p><p>&lt;?php<br
/> }<br
/> ?&gt;</code></div><p><br/></p><p><strong>02.</strong> Change <strong>4</strong> to any number so that the ad get displayed on only the posts which are older than the specified number.</p><p>This concludes this simple and useful tutorial. Hope you like it.</p> ]]></content:encoded> <wfw:commentRss>http://tutzone.net/how-to-display-adsense-ads-on-posts-older-than-4-days/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>How To Highlight Search Results In WordPress</title><link>http://tutzone.net/how-to-highlight-search-results-in-wordpress/</link> <comments>http://tutzone.net/how-to-highlight-search-results-in-wordpress/#comments</comments> <pubDate>Tue, 26 Apr 2011 17:33:08 +0000</pubDate> <dc:creator>Bariski</dc:creator> <category><![CDATA[Blogger Tricks And Tutorials]]></category> <category><![CDATA[Blogger]]></category> <category><![CDATA[Design]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[Search]]></category> <category><![CDATA[Tutorial]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[Web Developer]]></category> <category><![CDATA[Web Development]]></category> <category><![CDATA[Wordpress]]></category><guid
isPermaLink="false">http://tutzone.net/?p=495</guid> <description><![CDATA[You can highlight the search result for your users/visitors, and help them find the related content more quickly and easily. This simple tutorial will help you along.]]></description> <content:encoded><![CDATA[<p>You can highlight the search result for your users/visitors, and help them find the related content more quickly and easily. This simple tutorial will help you along.</p><div
style="text-align: center;"><h3>Procedure:</h3></div><p><span
style="color: rgb(255, 0, 0);"><strong>Note:</strong> Do take backup of the file you try this.</span></p><p><strong>01.</strong> Replace <strong>the_exerpt()</strong> code in <strong>search.php</strong> file with:</p><div
class="code"><code>echo $excerpt;</code></div><p><br/></p><p><strong>02.</strong> Now just below the replaced code add these lines:</p><div
class="code"><code>$excerpt = get_the_excerpt();<br
/> $keys = explode(&quot; &quot;,$s);<br
/> $excerpt = preg_replace('/('.implode('|', $keys) .')/iu', '&lt;strong class=&quot;search-excerpt&quot;&gt;\0&lt;/strong&gt;', $excerpt);</code></div><p><br/></p><p><strong>03.</strong> Edit the class .search-excerpt as you want your highlight to look.</p><p>This concludes this simple and useful tutorial. Hope you like it.</p> ]]></content:encoded> <wfw:commentRss>http://tutzone.net/how-to-highlight-search-results-in-wordpress/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Display Messages For Logged In Users</title><link>http://tutzone.net/display-messages-for-logged-in-users/</link> <comments>http://tutzone.net/display-messages-for-logged-in-users/#comments</comments> <pubDate>Mon, 25 Apr 2011 17:16:22 +0000</pubDate> <dc:creator>Bariski</dc:creator> <category><![CDATA[Blogger Tricks And Tutorials]]></category> <category><![CDATA[Blogger]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[Tutorial]]></category> <category><![CDATA[Web Developer]]></category> <category><![CDATA[Web Development]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[Wordpress Theme]]></category><guid
isPermaLink="false">http://tutzone.net/?p=494</guid> <description><![CDATA[If you have users on your WordPress blog, you can choose to display messages/stuff only for them, or vice versa, you can refer to this simple one step tutorial.]]></description> <content:encoded><![CDATA[<p>If you have users on your WordPress blog, you can choose to display messages/stuff only for them, or vice versa, you can refer to this simple one step tutorial.</p><div
style="text-align: center;"><h3>Procedure:</h3></div><p><span
style="color: rgb(255, 0, 0);"><strong>Note:</strong> Do take backup of the file you try this.</span></p><p><strong>01.</strong> Place the below code in <strong>functions.php</strong> file:</p><div
class="code"><code>if ( is_user_logged_in() ) {<br
/> echo 'Welcome, registered user!';<br
/> } else {<br
/> echo 'Welcome, visitor!';<br
/> };<br
/> </code></div><p><br/></p><p>This concludes this simple and useful tutorial. Hope you like it.</p> ]]></content:encoded> <wfw:commentRss>http://tutzone.net/display-messages-for-logged-in-users/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching using disk: basic
Object Caching 1226/1297 objects using disk: basic

Served from: tutzone.net @ 2012-02-04 14:53:08 -->
