<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>W3Bits</title>
	
	<link>http://w3bits.com</link>
	<description>Web Design &amp; Development Community</description>
	<lastBuildDate>Thu, 23 May 2013 17:35:46 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/W3Bits" /><feedburner:info uri="w3bits" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>W3Bits</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Put last modified / last Updated date in WordPress</title>
		<link>http://feedproxy.google.com/~r/W3Bits/~3/GHqyU2UC1UM/</link>
		<comments>http://w3bits.com/last-modified-date-wordpress/#comments</comments>
		<pubDate>Mon, 13 May 2013 16:29:20 +0000</pubDate>
		<dc:creator>Rahul Arora</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://w3bits.com/?p=707</guid>
		<description><![CDATA[<p>You might have noticed that some WordPress blogs show a last modified or last updated date in place of the...</p><p>The post <a href="http://w3bits.com/last-modified-date-wordpress/">Put last modified / last Updated date in WordPress</a> appeared first on <a href="http://w3bits.com">W3Bits</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>You might have noticed that some WordPress blogs show a <em>last modified</em> or <em>last updated</em> date in place of the published date on the posts or pages. If you&#8217;re looking to add the same functionality to your blog too, this tutorial will going to help  you to achieve that &#8211; we&#8217;ll see the both the DIY way and using plugins to accomplish that.</p>
<h3>Show Last modified date manually in WordPress</h3>
<p class="special"><b>Note</b>: Customizing your WordPress theme involves editing it&#8217;s different files which may need a little expertise with WordPress coding standard and development. It&#8217;s always better to backup your theme before editing. The recommended way to customize your theme is to do it locally (i.e. on a local WordPress installation rather than on your live site).</p>
<p>In order to show the modified date instead of the post published date, you need to edit some of your theme files. So, lets start, if you want to show the last updated date in your single (or full) post, just edit the <code>single.php</code> and look for the &lt;?php the_date(); ?&gt; or &lt;get_the_date(); &gt;. If you&#8217;re not able to find the two functions, look for the template that has been called in the file to execute the loop. Try to figure out where these two functions are executing and replace it with the below code:</p>
<pre>&lt;?php the_modified_date('<font color="#990000">l, F j, Y</font>', '<font color="#009900">&lt;div class="the-modified-date"&gt;</font>', '<font color="#000099">&lt;/div&gt;</font>'); &gt;</pre>
<p>The first parameter (highlighted in <font color="#990000">red</font>) in the above function is the format of our date. That value there will display our date in this fashion: <em>Sunday, May 12, 2013</em>. Read more about <a href="http://codex.wordpress.org/Formatting_Date_and_Time" target="_blank" rel="nofollow">Formatting WordPress date and time</a>.</p>
<p>Value of the next parameter (highlighted in <font color="#009900">green</font>) would be text or markup that should appear in the starting of our date. In the example code, I&#8217;ve added an opened HTML division tag since I wanted to put the date in a division.</p>
<p>Similarly, the next parameter (highlighted in <font color="#000099">blue</font>) will carry value that should appear after the date. I&#8217;ve added a closing HTML div since I&#8217;ve placed and opened <em>div</em> tag in the start of the date. Check out the output I obtained by making the changes.</p>
<p><img src="http://w3bits.com/wp-content/uploads/2013/05/the-modified-date-wordpress.jpg" alt="Result of the_modified_date() in WordPress" title="Result of the_modified_date() in WordPress" /></p>
<p>If you don&#8217;t want to show anything before or after the date, leave the parameters blank. Feeling confused? Read more about <strong>the_modifed_date</strong> function at <a href="https://codex.wordpress.org/Function_Reference/the_modified_date" title="the_modified_date();" rel="nofollow" target="_blank">WordPress codex</a>.</p>
<p>You may repeat the process for the files <code>page.php</code> to show the modified date on pages.</p>
<h3>WordPress plugin to show last modifed date</h3>
<p>I&#8217;ve written a WordPress plugin called <a href="http://w3bits.com/wordpress-revised-meta-tag-plugin/">Revised Meta tag</a> that allows you to add last modifed date to your WordPress posts and pages in a controlled way. The main purpose of the plugin is to add <a href="http://w3bits.com/meta-tag-revised/">revised meta tag</a> to WordPress posts and pages, but you can opt-out if you don&#8217;t want the plugin to do that.</p>
<p><a href="http://w3bits.com/wordpress-revised-meta-tag-plugin/" class="button">Download Revised Meta tag WordPress plugin &#187;</a></p>
<p>Let me know your thoughts, suggestions and questions on this.</p>
<p>The post <a href="http://w3bits.com/last-modified-date-wordpress/">Put last modified / last Updated date in WordPress</a> appeared first on <a href="http://w3bits.com">W3Bits</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/W3Bits?a=GHqyU2UC1UM:jdXtqgMMC1k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/W3Bits?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/W3Bits?a=GHqyU2UC1UM:jdXtqgMMC1k:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/W3Bits?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/W3Bits?a=GHqyU2UC1UM:jdXtqgMMC1k:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/W3Bits?i=GHqyU2UC1UM:jdXtqgMMC1k:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/W3Bits?a=GHqyU2UC1UM:jdXtqgMMC1k:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/W3Bits?i=GHqyU2UC1UM:jdXtqgMMC1k:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/W3Bits/~4/GHqyU2UC1UM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://w3bits.com/last-modified-date-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3bits.com/last-modified-date-wordpress/</feedburner:origLink></item>
		<item>
		<title>WordPress Revised Meta Tag Plugin</title>
		<link>http://feedproxy.google.com/~r/W3Bits/~3/Dy48D6dbfYQ/</link>
		<comments>http://w3bits.com/wordpress-revised-meta-tag-plugin/#comments</comments>
		<pubDate>Mon, 13 May 2013 11:27:16 +0000</pubDate>
		<dc:creator>Rahul Arora</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://w3bits.com/?p=659</guid>
		<description><![CDATA[<p>You can now add the revised meta tag information to your WordPress posts and pages with our Revised meta tag...</p><p>The post <a href="http://w3bits.com/wordpress-revised-meta-tag-plugin/">WordPress Revised Meta Tag Plugin</a> appeared first on <a href="http://w3bits.com">W3Bits</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>You can now add the <a href="http://w3bits.com/meta-tag-revised/" title="What is revised Meta Tag?">revised meta tag</a> information to your WordPress posts and pages with our <a href="http://wordpress.org/plugins/revised-meta-tag" rel="nofollow" title="Revised Meta Tag Plugin for WordPress" target="_blank">Revised meta tag plugin</a> available at the <a href="http://wordpress.org/plugins/revised-meta-tag" rel="nofollow" title="Revised Meta Tag Plugin for WordPress" target="_blank">WordPress repository for free</a>.</p>
<p class="special"><b>Note</b>: This is the support page for the <a href="http://wordpress.org/plugins/revised-meta-tag" rel="nofollow" title="Revised Meta Tag Plugin for WordPress" target="_blank">WordPress Revised meta tag plugin</a>, and all the support and troubleshooting will be provided here only.</p>
<h3>Revised Meta Tag Plugin: Features</h3>
<ul>
<li>Allows you to add revised date meta tag in your posts and pages either together or separately.</li>
<li>Provides you with options to display the last modified / last updated date above or below your posts and pages. You can also choose from four different date formats and the position of the timestamp in WordPress Posts and Pages which can be either above or below.</li>
<li>Allows you to customize the text which is to be displayed alongside the last modified date (i.e. &#8220;Last updated on:&#8221; in place of &#8220;Last modified:&#8221;)</li>
</ul>
<h3>Plugin FAQ</h3>
<p><b>1. What is meta &#8216;revised&#8217; tag?</b></p>
<p>The &#8220;meta revised tag&#8221; is used to tell the last modified date &#038; time of a webpage to various web crawlers (Google, Yahoo!, Bing etc.). <a href="http://w3bits.com/meta-tag-revised/ " title="Meta Tag revised">Read more about Meta revised tag</a>.</p>
<p><b>2. I don&#8217;t want to show revised meta on archive pages (index, category, tags etc.) and Homepage. What should I do?</b></p>
<p>By default, the plugin is already optimized to show the revised meta tag only on posts and pages, and you can opt-in and out anytime to show the tag in them as well. So, you need not to worry about the Homepage and various WordPress Archive Pages.</p>
<p><b>3. The Date and Time inserted by this plugin is dependent on what?</b></p>
<p>The plugin make use of your WordPress Date, Time and Time zone (Dashboard &#187; Settings &#187; General). Double check your Date, Time and Time zone before activating this plugin. The idle time for telling the Last Modified time to Search Engines will be UTC.</p>
<p><a href="http://wordpress.org/plugins/revised-meta-tag" rel="nofollow" class="button" title="Revised Meta Tag Plugin for WordPress" target="_blank">Download Revised Meta Tag Plugin &#187;</a></p>
<p>If you find this plugin useful, please provide your feedback by <strong>Rating this Plugin</strong> and by <strong>Voting in Compatibility</strong> on WordPress.</p>
<p>The post <a href="http://w3bits.com/wordpress-revised-meta-tag-plugin/">WordPress Revised Meta Tag Plugin</a> appeared first on <a href="http://w3bits.com">W3Bits</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/W3Bits?a=Dy48D6dbfYQ:IebTQ8Gyp94:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/W3Bits?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/W3Bits?a=Dy48D6dbfYQ:IebTQ8Gyp94:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/W3Bits?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/W3Bits?a=Dy48D6dbfYQ:IebTQ8Gyp94:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/W3Bits?i=Dy48D6dbfYQ:IebTQ8Gyp94:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/W3Bits?a=Dy48D6dbfYQ:IebTQ8Gyp94:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/W3Bits?i=Dy48D6dbfYQ:IebTQ8Gyp94:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/W3Bits/~4/Dy48D6dbfYQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://w3bits.com/wordpress-revised-meta-tag-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3bits.com/wordpress-revised-meta-tag-plugin/</feedburner:origLink></item>
		<item>
		<title>Notify Web crawlers about the updated content with meta revised tag</title>
		<link>http://feedproxy.google.com/~r/W3Bits/~3/Z1k_7A4enb8/</link>
		<comments>http://w3bits.com/meta-tag-revised/#comments</comments>
		<pubDate>Mon, 13 May 2013 09:09:33 +0000</pubDate>
		<dc:creator>Rahul Arora</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://w3bits.com/?p=669</guid>
		<description><![CDATA[<p>Almost every webmaster knows about meta tags. There are different types of meta tags which are generally placed in the...</p><p>The post <a href="http://w3bits.com/meta-tag-revised/">Notify Web crawlers about the updated content with meta revised tag</a> appeared first on <a href="http://w3bits.com">W3Bits</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Almost every webmaster knows about <em>meta tags</em>. There are different types of meta tags which are generally placed in the <code>&lt;head&gt;</code> section of the markup of a webpage. The objective of adding meta tags to a webpage depends upon the behavior or property of the tag we are adding &#8211; for example, meta <em>description</em> tag is used to add description to our page that appears in search engine results, meta <em>charset</em> is used to define the character encoding of our page and so on.</p>
<p>I just came to know about <strong>meta revised tag</strong> when my friend <a href="http://mrintech.com/about/" title="MrinTech - Computers, Technology and more" target="_blank">Mrinmay Bhattacharjee</a> told me about some sites making use of it (thanks to him for letting me know about this useful tag), and in fact, Mrinmay is also using the tag on his site <a href="http://mrintech.com/" title="MrinTech - Computers, Technology and more" target="_blank">MrinTech</a> from past few days. In this article, we&#8217;ll know the use of a rarely discussed meta tag, the <strong>meta revised tag</strong>.</p>
<h3>What is the function of meta revised tag?</h3>
<p>Meta revised tag is used to tell Search Engine bots (Google, Yahoo!, Bing etc.) the Last Modified Date and Time of any Webpage in which you have made certain changes. Web crawlers may decide to update their index by reading this tag info on a web page.</p>
<p><img src="http://w3bits.com/wp-content/uploads/2013/05/last-modified-date-google-search.jpg" alt="Last Modified date on Google search results" title="Last modified date of webpages on Google search results" /><br />
<small>Page with revised date in searches, and the meta revised tag highlighted in it&#8217;s markup</small></p>
<h3>Meta revised tag syntax</h3>
<p>The tag can be written as shown in the below sample code anywhere below <code>&lt;head&gt;</code> and above <code>&lt;/head&gt;</code> tags in the markup of your webpage:</p>
<pre>&lt;meta name=&quot;revised&quot; content=&quot;05/12/2013&quot; /&gt;</pre>
<p>The meta revised tag should only be provided with the last modified date (and time, optional) in it&#8217;s <code>content</code> parameter. The date can be in a numerical form separated by dashes (-)or slashes (/) or typical <em>date</em> (eg. Sunday, May 12, 2013).</p>
<h3>Importance</h3>
<p>Crawlers have different ways to fetch the last modified date and time of a web page. It could be done through reading HTTP headers or by comparing the updated page and the old / cached copy of the page. So, if your site doesn&#8217;t have meta revised tag implemented in it, it doesn&#8217;t mean that your site won&#8217;t be crawled for search engine indexing.</p>
<p>But crawlers not always perform checks to determine the last modified date of all the pages in it&#8217;s index. Here, the meta revised tag can play important role, as it provides a small last modified info to the crawler without needing the thorough comparisons to determine the same.</p>
<p>So, if you want to keep the crawlers updated about your content, start using meta revised tag on your site&#8217;s posts and pages.</p>
<p>The post <a href="http://w3bits.com/meta-tag-revised/">Notify Web crawlers about the updated content with meta revised tag</a> appeared first on <a href="http://w3bits.com">W3Bits</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/W3Bits?a=Z1k_7A4enb8:MiwqoTc9_Qk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/W3Bits?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/W3Bits?a=Z1k_7A4enb8:MiwqoTc9_Qk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/W3Bits?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/W3Bits?a=Z1k_7A4enb8:MiwqoTc9_Qk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/W3Bits?i=Z1k_7A4enb8:MiwqoTc9_Qk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/W3Bits?a=Z1k_7A4enb8:MiwqoTc9_Qk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/W3Bits?i=Z1k_7A4enb8:MiwqoTc9_Qk:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/W3Bits/~4/Z1k_7A4enb8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://w3bits.com/meta-tag-revised/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://w3bits.com/meta-tag-revised/</feedburner:origLink></item>
		<item>
		<title>Automatically set Featured Thumbnails to WordPress posts</title>
		<link>http://feedproxy.google.com/~r/W3Bits/~3/bD6KV_uPtAk/</link>
		<comments>http://w3bits.com/wordpress-auto-thumbnails/#comments</comments>
		<pubDate>Tue, 07 May 2013 06:07:10 +0000</pubDate>
		<dc:creator>Rahul Arora</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://w3bits.com/?p=638</guid>
		<description><![CDATA[<p>WordPress featured thumbnails allow you to add a featured image to your posts. You may set a featured thumbnail to...</p><p>The post <a href="http://w3bits.com/wordpress-auto-thumbnails/">Automatically set Featured Thumbnails to WordPress posts</a> appeared first on <a href="http://w3bits.com">W3Bits</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://w3bits.com/post-thumbnails-in-wordpress/" title="Post Thumbnails in WordPress">WordPress featured thumbnails</a> allow you to add a featured image to your posts. You may set a featured thumbnail to your post by using the <strong>Featured Image</strong> meta box by clicking the <em>Set Featured image</em> link and uploading your image.</p>
<p>But in case when you publish posts frequently and forget setting a thumbnail mostly, you may want them set automatically. In order to achieve that, you need to add the below code in the <code>functions.php</code> file of your WordPress theme and save the changes:</p>
<pre>&lt;?php
function auto_featured_thumb() {
&nbsp;&nbsp;global $post;
&nbsp;&nbsp;$has_thumb = has_post_thumbnail($post->ID);
&nbsp;&nbsp;if (!$has_thumb)  {
&nbsp;&nbsp;&nbsp;&nbsp;$attached_image = get_children('post_parent=$post->ID&#038;post_type=attachment&#038;post_mime_type=image&#038;numberposts=1');
&nbsp;&nbsp;&nbsp;&nbsp;if ($attached_image) {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;foreach ($attached_image as $attachment_id => $attachment) {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;set_post_thumbnail($post->ID, $attachment_id);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;}
}
add_action('the_post', 'auto_featured_thumb');
add_action('save_post', 'auto_featured_thumb');
add_action('draft_to_publish', 'auto_featured_thumb');
add_action('new_to_publish', 'auto_featured_thumb');
add_action('pending_to_publish', 'auto_featured_thumb');
add_action('future_to_publish', 'auto_featured_thumb');
?&gt;</pre>
<p>The above code looks into your post for other images added by you, and automatically sets the first image from the post as the featured thumbnail image.</p>
<p>The post <a href="http://w3bits.com/wordpress-auto-thumbnails/">Automatically set Featured Thumbnails to WordPress posts</a> appeared first on <a href="http://w3bits.com">W3Bits</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/W3Bits?a=bD6KV_uPtAk:kcQsEjicbgo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/W3Bits?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/W3Bits?a=bD6KV_uPtAk:kcQsEjicbgo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/W3Bits?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/W3Bits?a=bD6KV_uPtAk:kcQsEjicbgo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/W3Bits?i=bD6KV_uPtAk:kcQsEjicbgo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/W3Bits?a=bD6KV_uPtAk:kcQsEjicbgo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/W3Bits?i=bD6KV_uPtAk:kcQsEjicbgo:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/W3Bits/~4/bD6KV_uPtAk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://w3bits.com/wordpress-auto-thumbnails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3bits.com/wordpress-auto-thumbnails/</feedburner:origLink></item>
		<item>
		<title>Download Facebook logo Font (TTF, OTF and Web Font)</title>
		<link>http://feedproxy.google.com/~r/W3Bits/~3/7cp5NpRot00/</link>
		<comments>http://w3bits.com/facebook-font/#comments</comments>
		<pubDate>Mon, 06 May 2013 17:44:16 +0000</pubDate>
		<dc:creator>Rahul Arora</dc:creator>
				<category><![CDATA[Graphics]]></category>

		<guid isPermaLink="false">http://w3bits.com/?p=614</guid>
		<description><![CDATA[<p>Facebook is one of the most popular Social Networks in the world, and so is it&#8217;s logo. Everyone knows how...</p><p>The post <a href="http://w3bits.com/facebook-font/">Download Facebook logo Font (TTF, OTF and Web Font)</a> appeared first on <a href="http://w3bits.com">W3Bits</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Facebook is one of the most popular Social Networks in the world, and so is it&#8217;s logo. Everyone knows how Facebook logo looks like. For designers and DIY entrepreneurs who build assets around Facebook may want to know about the font they use in the Facebook logo.</p>
<p><img src="http://w3bits.com/wp-content/uploads/2013/05/facebook-logo-font.jpg" alt="Facebook font download" title="Facebook font preview" /></p>
<p>So, what font it is? <strong>Klavika</strong>. The font is exactly about what you want from it, it appears exactly like the font used in Facebook logo, and it&#8217;s available in 4 different weights: light, regular, medium, bold with normal and italic styles. You should try it yourself <a rel="nofollow" href="http://processtypefoundry.com/fonts/klavika/try-it" title="Klavika Preview" target="_blank">here</a>.</p>
<p><a href="http://processtypefoundry.com/fonts/klavika/" target="_blank" rel="nofollow" title="Download Klavika" class="button">Download Klavika font here &#187;</a></p>
<p>The post <a href="http://w3bits.com/facebook-font/">Download Facebook logo Font (TTF, OTF and Web Font)</a> appeared first on <a href="http://w3bits.com">W3Bits</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/W3Bits?a=7cp5NpRot00:T-udu9_pPBk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/W3Bits?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/W3Bits?a=7cp5NpRot00:T-udu9_pPBk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/W3Bits?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/W3Bits?a=7cp5NpRot00:T-udu9_pPBk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/W3Bits?i=7cp5NpRot00:T-udu9_pPBk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/W3Bits?a=7cp5NpRot00:T-udu9_pPBk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/W3Bits?i=7cp5NpRot00:T-udu9_pPBk:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/W3Bits/~4/7cp5NpRot00" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://w3bits.com/facebook-font/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3bits.com/facebook-font/</feedburner:origLink></item>
	</channel>
</rss>
