<?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>MediaFap</title>
	<atom:link href="http://mediafap.com/feed" rel="self" type="application/rss+xml" />
	<link>http://mediafap.com</link>
	<description>Web Development Studio</description>
	<lastBuildDate>Thu, 28 Mar 2013 21:49:20 +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>
		<item>
		<title>Add Twitter profile field to your WordPress theme</title>
		<link>http://mediafap.com/content/add-twitter-profile-field-to-your-wordpress-theme.html</link>
		<comments>http://mediafap.com/content/add-twitter-profile-field-to-your-wordpress-theme.html#comments</comments>
		<pubDate>Wed, 27 Mar 2013 16:47:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Content]]></category>
		<category><![CDATA[article]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://mediafap.com/?p=121</guid>
		<description><![CDATA[Want your blog authors to be able to add their Twitter usernames to their profiles so your readers can follow them directly from your site? Add the following snippet to your functions.php file, usually a good place to put this is directly at the bottom of the file: Save the file and head over to [...]]]></description>
				<content:encoded><![CDATA[<p>Want your blog authors to be able to add their Twitter usernames to their profiles so your readers can follow them directly from your site?</p>
<p>Add the following snippet to your functions.php file, usually a good place to put this is directly at the bottom of the file:</p>
<div class="code"></p>
<p>&lt;?php<br />
/**<br />
* USER PROFILE FIELDS<br />
*/<br />
add_action( 'show_user_profile', 'my_show_extra_profile_fields' );<br />
add_action( 'edit_user_profile', 'my_show_extra_profile_fields' );</p>
<p>function my_show_extra_profile_fields( $user ) { ?&gt;</p>
<p>&lt;h3&gt;Extra profile information&lt;/h3&gt;</p>
<p>&lt;table class="form-table"&gt;</p>
<p>&lt;tr&gt;</p>
<p>&lt;th&gt;&lt;label for="twitter"&gt;Twitter&lt;/label&gt;&lt;/th&gt;</p>
<p>&lt;td&gt;</p>
<p>&lt;input type="text" name="twitter" id="twitter" value="&lt;?php echo esc_attr( get_the_author_meta( 'twitter', $user-&gt;ID ) ); ?&gt;" class="regular-text" /&gt;&lt;br /&gt;<br />
&lt;span class="description"&gt;Please enter your Twitter username.&lt;/span&gt;</p>
<p>&lt;/td&gt;</p>
<p>&lt;/tr&gt;</p>
<p><em id="__mceDel"><em id="__mceDel">&lt;/table&gt;<br />
&lt;?php }</em></em></p>
<p>add_action( 'personal_options_update', 'my_save_extra_profile_fields' );<br />
add_action( 'edit_user_profile_update', 'my_save_extra_profile_fields' );</p>
<p>function my_save_extra_profile_fields( $user_id ) {</p>
<p>if ( !current_user_can( 'edit_user', $user_id ) )<br />
return false;</p>
<p>update_user_meta( $user_id, 'twitter', $_POST['twitter'] );<br />
}</p>
<p>?&gt;</div>
	
<p>Save the file and head over to your blog profile page, you should see the extra field in action, now what?</p>
<p>To output the information added to this field simply add this to your single.php file, usually a good place for this is underneath the post title, or below the post contents.</p>
<div class="code">&lt;?php the_author_meta( 'twitter' ); ?&gt;</div>
	
<p>This will simply output whatever is stored in the post authors Twitter field allowing you to utilise this data to perhaps create a &#8216;follow me&#8217; link such as this:</p>
<div class="code"></p>
<p>&lt;a href="http://twitter.com/&lt;?php the_author_meta( 'twitter' ); ?&gt;" target="_blank" title="Follow me on Twitter"&gt;@&lt;?php the_author_meta( 'twitter' ); ?&gt;&lt;/a&gt;</div>
	
<p>This will add a hyperlink to the text linking directly to the post authors Twitter page, and there&#8217;s nothing stopping you from adding an image/button into this too, styling it as required using basic CSS.</p>
]]></content:encoded>
			<wfw:commentRss>http://mediafap.com/content/add-twitter-profile-field-to-your-wordpress-theme.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8216;Big News&#8217; Newspaper WordPress Theme</title>
		<link>http://mediafap.com/project/big-news-newspaper-wordpress-theme.html</link>
		<comments>http://mediafap.com/project/big-news-newspaper-wordpress-theme.html#comments</comments>
		<pubDate>Mon, 25 Mar 2013 21:01:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Project]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://mediafap.com/?p=89</guid>
		<description><![CDATA[&#8216;Big News&#8217; is an attractive &#38; responsive Newspaper theme for use on the WordPress platform. Screenshot: http://t.co/aGF7jNujH3]]></description>
				<content:encoded><![CDATA[<p>&#8216;Big News&#8217; is an attractive &amp; responsive Newspaper theme for use on the WordPress platform.</p>
<p><strong>Screenshot: <a title="Screenshot" href="http://t.co/aGF7jNujH3">http://t.co/aGF7jNujH3</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://mediafap.com/project/big-news-newspaper-wordpress-theme.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Karl Pilkington Video Gallery</title>
		<link>http://mediafap.com/project/karl-pilkington-video-gallery.html</link>
		<comments>http://mediafap.com/project/karl-pilkington-video-gallery.html#comments</comments>
		<pubDate>Sat, 23 Mar 2013 01:19:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Project]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[automatic]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://mediafap.com/?p=5</guid>
		<description><![CDATA[Purpose-built video gallery based around the incredible life of the one and only Mr. Karl Pilkington, who shot to fame following his UK travel television series &#8216;An Idiot Abroad&#8217; from Sky1. Features accompanying YouTube channel, Twitter and Tumblr pages &#8211; a must for all fans. Site: http://bit.ly/11DJZzk Screenshot: http://t.co/edXIvLLX2G]]></description>
				<content:encoded><![CDATA[<p>Purpose-built video gallery based around the incredible life of the one and only Mr. Karl Pilkington, who shot to fame following his UK travel television series &#8216;An Idiot Abroad&#8217; from Sky1.</p>
<p>Features accompanying YouTube channel, Twitter and Tumblr pages &#8211; a must for all fans.</p>
<p><strong>Site: <a title="Visit Site" href="http://bit.ly/11DJZzk" target="_blank">http://bit.ly/11DJZzk</a></strong></p>
<p><strong>Screenshot: <a title="Screenshot" href="http://t.co/edXIvLLX2G">http://t.co/edXIvLLX2G</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://mediafap.com/project/karl-pilkington-video-gallery.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8216;PressCMS&#8217; Newspaper Theme for WordPress</title>
		<link>http://mediafap.com/project/presscms-newspaper-theme-for-wordpress.html</link>
		<comments>http://mediafap.com/project/presscms-newspaper-theme-for-wordpress.html#comments</comments>
		<pubDate>Fri, 22 Mar 2013 03:24:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Project]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://mediafap.com/?p=29</guid>
		<description><![CDATA[Responsive Newspaper theme for WordPress entitled &#8216;PressCMS&#8217;, check out the multiple demos. Screenshot: http://t.co/XNzSHLY28r]]></description>
				<content:encoded><![CDATA[<p>Responsive Newspaper theme for WordPress entitled &#8216;PressCMS&#8217;, check out the multiple demos.</p>
<p><strong>Screenshot: <a title="Screenshot" href="http://t.co/XNzSHLY28r">http://t.co/XNzSHLY28r</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://mediafap.com/project/presscms-newspaper-theme-for-wordpress.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8216;Sporty&#8217; CMS Theme for WordPress</title>
		<link>http://mediafap.com/project/sporty-cms-theme-for-wordpress.html</link>
		<comments>http://mediafap.com/project/sporty-cms-theme-for-wordpress.html#comments</comments>
		<pubDate>Sat, 09 Mar 2013 13:41:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Project]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[sport]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://mediafap.com/?p=44</guid>
		<description><![CDATA[The &#8216;SportyTheme&#8217; is a stunning Content Management System theme for use on the WordPress platform. Screenshot: http://t.co/4w0z8ASTVe]]></description>
				<content:encoded><![CDATA[<p>The &#8216;SportyTheme&#8217; is a stunning Content Management System theme for use on the WordPress platform.</p>
<p><strong>Screenshot: <a title="Screenshot" href="http://t.co/4w0z8ASTVe">http://t.co/4w0z8ASTVe</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://mediafap.com/project/sporty-cms-theme-for-wordpress.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8216;RGV Recruits&#8217; Recruiting Rio Grande Valley&#8217;s future stars</title>
		<link>http://mediafap.com/project/rgv-recruits-recruiting-rio-grande-valleys-future-stars.html</link>
		<comments>http://mediafap.com/project/rgv-recruits-recruiting-rio-grande-valleys-future-stars.html#comments</comments>
		<pubDate>Fri, 01 Mar 2013 11:10:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Project]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[sport]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://mediafap.com/?p=105</guid>
		<description><![CDATA[&#8216;RGV Recruits&#8217; helps young sporting stars from the Rio Grande Vally area reach out to coaches to further enhance their fledgling careers. Site: http://bit.ly/104ZM9m]]></description>
				<content:encoded><![CDATA[<p>&#8216;RGV Recruits&#8217; helps young sporting stars from the Rio Grande Vally area reach out to coaches to further enhance their fledgling careers.</p>
<p><strong>Site: <a title="RGV Recruits" href="http://bit.ly/104ZM9m" target="_blank">http://bit.ly/104ZM9m</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://mediafap.com/project/rgv-recruits-recruiting-rio-grande-valleys-future-stars.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automated Formula One News</title>
		<link>http://mediafap.com/project/automated-formula-one-news.html</link>
		<comments>http://mediafap.com/project/automated-formula-one-news.html#comments</comments>
		<pubDate>Mon, 25 Feb 2013 02:09:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Project]]></category>
		<category><![CDATA[automatic]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[sport]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://mediafap.com/?p=14</guid>
		<description><![CDATA[Automated Formula One news tracking website developed with a purpose-built WordPress theme, RSS and a bunch of 3rd-party widgets. Screenshot: http://t.co/J1HPI8VovY]]></description>
				<content:encoded><![CDATA[<p>Automated Formula One news tracking website developed with a purpose-built WordPress theme, RSS and a bunch of 3rd-party widgets.</p>
<p><strong>Screenshot: <a title="Screenshot" href="http://t.co/J1HPI8VovY">http://t.co/J1HPI8VovY</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://mediafap.com/project/automated-formula-one-news.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8216;Euroball&#8217; Football News Network</title>
		<link>http://mediafap.com/project/euroball-football-news-network.html</link>
		<comments>http://mediafap.com/project/euroball-football-news-network.html#comments</comments>
		<pubDate>Thu, 21 Feb 2013 10:39:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Project]]></category>
		<category><![CDATA[automatic]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[sport]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://mediafap.com/?p=100</guid>
		<description><![CDATA[&#8216;Euroball&#8217; delivers the latest Football news from Europe&#8217;s finest sources, automatically 24/7 using a custom WordPress theme, RSS and 3rd-party widgets. Site: http://bit.ly/104W13v Screenshot: http://t.co/kxsO1V0iRa]]></description>
				<content:encoded><![CDATA[<p>&#8216;Euroball&#8217; delivers the latest Football news from Europe&#8217;s finest sources, automatically 24/7 using a custom WordPress theme, RSS and 3rd-party widgets.</p>
<p><strong>Site: <a title="Euroball Football News Network" href="http://bit.ly/104W13v" target="_blank">http://bit.ly/104W13v</a></strong></p>
<p><strong>Screenshot: <a title="Screenshot" href="http://t.co/kxsO1V0iRa">http://t.co/kxsO1V0iRa</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://mediafap.com/project/euroball-football-news-network.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>News Source Automated Tracker</title>
		<link>http://mediafap.com/project/news-source-automated-tracker.html</link>
		<comments>http://mediafap.com/project/news-source-automated-tracker.html#comments</comments>
		<pubDate>Sat, 02 Feb 2013 13:27:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Project]]></category>
		<category><![CDATA[automatic]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://mediafap.com/?p=40</guid>
		<description><![CDATA[Using WordPress and RSS we developed a cool news tracker that constantly scoures the best news sources for the latest breaking headlines, covering as many or as little subjects as required. Screenshot: http://t.co/2TySmnO6gI]]></description>
				<content:encoded><![CDATA[<p>Using WordPress and RSS we developed a cool news tracker that constantly scoures the best news sources for the latest breaking headlines, covering as many or as little subjects as required.</p>
<p><strong>Screenshot: <a title="Screenshot" href="http://t.co/2TySmnO6gI">http://t.co/2TySmnO6gI</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://mediafap.com/project/news-source-automated-tracker.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use WordPress as a CMS to enhance your small business</title>
		<link>http://mediafap.com/content/use-wordpress-enhance-small-business.html</link>
		<comments>http://mediafap.com/content/use-wordpress-enhance-small-business.html#comments</comments>
		<pubDate>Sat, 26 Jan 2013 11:57:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Content]]></category>
		<category><![CDATA[article]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://mediafap.com/?p=113</guid>
		<description><![CDATA[Today WordPress is one of the most popular blogging tools available. Many people are still not aware of its powerful content management system and continue to use only the basic features offered. WordPress can actually be used for more than just blogging. With WordPress you can build a blog, a website, or both. WordPress is [...]]]></description>
				<content:encoded><![CDATA[<p>Today <a title="Wordpress" href="http://mediafap.com/tag/wordpress">WordPress</a> is one of the most popular blogging tools available.</p>
<p>Many people are still not aware of its powerful content management system and continue to use only the basic features offered.</p>
<p>WordPress can actually be used for more than just blogging. With WordPress you can build a blog, a website, or both. WordPress is a good choice for small business websites as it is very simple to configure and use for your small business.</p>
<p><img class="alignleft size-medium wp-image-117" alt="WordpressLove" src="http://mediafap.com/wp-content/uploads/2013/01/wordpress-love-300x295.png" width="300" height="295" />A content management system is a tool used to help you to handle the design and bring up to date the web pages on your website. WordPress is an amazingly user friendly and economical content management system.</p>
<p>The best part about WordPress is its free availability, ease of use and free usage. It is an ideal choice for a small business looking for an easy and inexpensive way to manage its blog or website.</p>
<p>WordPress was initially designed as a platform for blogging, but it’s not necessary to use it simply as a blogging tool. With a few twists it can be used to run a website, with or without a blog.</p>
<p>WordPress is optimized for easily publishing and changing content.</p>
<p>Easy publishing ensures fresh, unique content that is essential for getting good search engine rankings. You need a system that does not hinder the process in any way when you want to update your blog or website with a new article or newsletter.</p>
<p>WordPress provides avenues for good search engine optimization. It is not necessary for you to be familiar with HTML. You don’t need to learn a complex HTML editor tool like the Dreamweaver.</p>
<p>Once WordPress is set up for you, you can easily create new pages or edit existing pages using a simple rich text editor.</p>
<p>In addition to all this there are developers creating free themes and plugins. You can also extend your website with polls, contact forms, ratings or all other cool features without hiring a web developer.</p>
<p>If you have to add a custom feature, it is quite easy to find the necessary technical support and developers who can help you out.</p>
<p>There are thousands of <a title="Wordpress Theme" href="http://mediafap.com/tag/theme">WordPress Theme</a> developers.</p>
<p>In this case help is only a Google search away. Small businesses tend to have limited resources, fewer marketing skills yet plenty of passion. Blogs are difficult to maintain as they take energy, passion, and a lot of enthusiasm. They can also take a lot of time. They need to be updated frequently with newer posts and information.</p>
<p>WordPress blogs are easy to maintain and you don’t have to have a lot of technical expertise either.</p>
<p>You can use your blog not only to educate your customers, but also to get them to educate you. A WordPress blog can help you gather marketing information, provide feedback, and teach you what you need to know about your customers’ needs so you can serve them better.</p>
<p>Within no time, you will be able to establish a place for your small business and you can then sit back and watch it grow and flourish.</p>
]]></content:encoded>
			<wfw:commentRss>http://mediafap.com/content/use-wordpress-enhance-small-business.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  mediafap.com/feed ) in 0.31557 seconds, on May 21st, 2013 at 2:28 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 21st, 2013 at 3:28 am UTC -->