<?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>WPCONCEPT + wordpress resources &#187; How to</title>
	<atom:link href="http://www.wpconcept.com/category/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wpconcept.com</link>
	<description></description>
	<lastBuildDate>Wed, 05 May 2010 15:26:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Custom content after each post</title>
		<link>http://www.wpconcept.com/2010/05/05/custom-content-after-each-post/</link>
		<comments>http://www.wpconcept.com/2010/05/05/custom-content-after-each-post/#comments</comments>
		<pubDate>Wed, 05 May 2010 15:14:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[after each post]]></category>
		<category><![CDATA[custom content]]></category>

		<guid isPermaLink="false">http://www.wpconcept.com/?p=152</guid>
		<description><![CDATA[If you want to put custom content after each post just copy the following code and paste it in functions.php file: function add_post_content($content) { if(!is_feed() &#38;&#38; !is_home()) { $content .= &#8216;&#60;p&#62;This article is copyright &#38;copy; &#8216;.date(&#8216;Y&#8217;).&#8217;&#38;nbsp;&#8217;.bloginfo(&#8216;name&#8217;).&#8217;&#60;/p&#62;&#8217;; } return $content; } add_filter(&#8216;the_content&#8217;, &#8216;add_post_content&#8217;); Job done]]></description>
			<content:encoded><![CDATA[<p>If you want to put custom content after each post just copy the following code and paste it in functions.php file:</p>
<blockquote><p>
function add_post_content($content) {<br />
if(!is_feed() &amp;&amp; !is_home()) {<br />
$content .= &#8216;&lt;p&gt;This article is copyright &amp;copy; &#8216;.date(&#8216;Y&#8217;).&#8217;&amp;nbsp;&#8217;.bloginfo(&#8216;name&#8217;).&#8217;&lt;/p&gt;&#8217;;<br />
}<br />
return $content;<br />
}<br />
add_filter(&#8216;the_content&#8217;, &#8216;add_post_content&#8217;);
</p></blockquote>
<p>Job done <img src='http://www.wpconcept.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpconcept.com/2010/05/05/custom-content-after-each-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom fields in wordpress</title>
		<link>http://www.wpconcept.com/2009/11/24/custom-fields-in-wordpress/</link>
		<comments>http://www.wpconcept.com/2009/11/24/custom-fields-in-wordpress/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 13:43:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[custom fields]]></category>
		<category><![CDATA[wordpress custom fields]]></category>

		<guid isPermaLink="false">http://wpconcept.com/?p=42</guid>
		<description><![CDATA[Custom fields in wordpress are important if you want to use custom functions in your theme or if you want to have a clean design. The implementation of custom fields is relatively easy. Open your style.css file and paste the following code: .leadpic { float:left; width:200px; height:100px; border:1px solid #bebebe; padding:5px; margin:10px 10px 10px 10px; [...]]]></description>
			<content:encoded><![CDATA[<p>Custom fields in wordpress are important if you want to use custom functions in your theme or if you want to have a clean design. The implementation of custom fields is relatively easy.</p>
<p>Open your style.css file and paste the following code:</p>
<p><span id="more-42"></span></p>
<p><code>.leadpic {<br />
float:left;<br />
width:200px;<br />
height:100px;<br />
border:1px solid #bebebe;<br />
padding:5px;<br />
margin:10px 10px 10px 10px;<br />
}</code></p>
<p>The code above can be customized as you want.</p>
<p>Now open the index.php file and search the following code:</p>
<p><code>&lt;?php if</code> <code>(have_posts()) : while</code> <code>(have_posts()) : the_post</code></p>
<p>Under this code paste the following code:</p>
<p><code>&lt;?php<br />
$values = get_post_custom_values("Image");<br />
if (isset($values[0])) {<br />
?&gt;<br />
&lt;div&gt;<br />
&lt;a href="&lt;?php the_permalink() ?&gt;" rel="bookmark" title="Permanent Link to &lt;?php the_title(); ?&gt;"&gt;&lt;img src="&lt;?php $values = get_post_custom_values("Image"); echo $values[0]; ?&gt;" alt="" width="200px" height="100px" /&gt;&lt;/a&gt;<br />
&lt;/div&gt;<br />
&lt;?php } ?&gt;<br />
</code><br />
To use this custom field you must <em>add a new custom field</em> from wordpress post options.</p>
<p>On the key field put <em>image</em> and on the <em>value</em> field put your image url.</p>
<p>The entire code from this article can be easily customized. For any questions feel free to post a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpconcept.com/2009/11/24/custom-fields-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>create multiple sidebars in wordpress</title>
		<link>http://www.wpconcept.com/2009/11/23/how-to-create-multiple-sidebars-in-wordpress/</link>
		<comments>http://www.wpconcept.com/2009/11/23/how-to-create-multiple-sidebars-in-wordpress/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 14:07:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[multiple sidebars]]></category>
		<category><![CDATA[wordpress sidebars]]></category>

		<guid isPermaLink="false">http://wpconcept.com/?p=33</guid>
		<description><![CDATA[When you develop a wordpress theme maybe you have to use two sidebars which to use them both at once or on different pages. I recently encountered with this problem and i thought that maybe there is someone else in the same situation. Creating multiple sidebars in wordpress is a fairly easy process. We have [...]]]></description>
			<content:encoded><![CDATA[<p>When you develop a wordpress theme maybe you have to use two sidebars which to use them both at once or on different pages. I recently encountered with this problem and i thought that maybe there is someone else in the same situation.</p>
<p>Creating multiple sidebars in wordpress is a fairly easy process. We have to work just on functions.php file. Your default functions.php file should look like this:</p>
<p><span id="more-33"></span></p>
<p><code>&lt;?php<br />
if ( function_exists('register_sidebar') )<br />
register_sidebar();<br />
?&gt;</code></p>
<p>To create two sidebars paste the following code on your functions.php file:</p>
<p><code>&lt;?php<br />
if ( function_exists('register_sidebar') )<br />
register_sidebar(array('name'=&gt;'sidebar1',<br />
'before_widget' =&gt; '',<br />
'after_widget' =&gt; '',<br />
'before_title' =&gt; '&lt;h4&gt;',<br />
'after_title' =&gt; '&lt;/h4&gt;',<br />
));<br />
register_sidebar(array('name'=&gt;'sidebar2',<br />
'before_widget' =&gt; '',<br />
'after_widget' =&gt; '',<br />
'before_title' =&gt; '&lt;h4&gt;',<br />
'after_title' =&gt; '&lt;/h4&gt;',<br />
));<br />
?&gt;</code><br />
As you can see i&#8217;ve created two sidebars called sidebar1 and sidebar2. To use these sidebars paste on your php files the following code:</p>
<p>Sidebar1 code goes like this:<br />
<code>&lt;?php if ( !function_exists('dynamic_sidebar')<br />
|| !dynamic_sidebar('sidebar1') ) : ?&gt;<br />
&lt;?php endif; ?&gt;</code></p>
<p>Sidebar2 code goes like this:<br />
<code>&lt;?php if ( !function_exists('dynamic_sidebar')<br />
|| !dynamic_sidebar('sidebar2') ) : ?&gt;<br />
&lt;?php endif; ?&gt;</code></p>
<p>Hope you enjoy this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpconcept.com/2009/11/23/how-to-create-multiple-sidebars-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create a custom page template for WP</title>
		<link>http://www.wpconcept.com/2009/11/21/create-a-custom-page-template/</link>
		<comments>http://www.wpconcept.com/2009/11/21/create-a-custom-page-template/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 19:06:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[custom page template]]></category>
		<category><![CDATA[wordpress cms]]></category>

		<guid isPermaLink="false">http://wpconcept.com/?p=28</guid>
		<description><![CDATA[If you want to use wordpress as a CMS or if you want to create some custom functions for some pages you should create a custom page template. Is very easy to create a custom page template and is very useful. Just create a empty .php page. Paste there the following code: /* Template Name: [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to use wordpress as a CMS or if you want to create some custom functions for some pages you should create a custom page template. Is very easy to create a custom page template and is very useful. Just create a empty .php page. Paste there the following code:</p>
<p><code>/*<br />
Template Name: name<br />
*/</code></p>
<p>After you&#8217;ve saved this page you can activate it from dashboard &gt; pages (edit a available page). On the right side you will see the &#8220;attributes&#8221; spot and go to the &#8220;template&#8221;. Select there the page that you&#8217;ve created.</p>
<p>In this new page you can create new functions very easy and you can control them from wordpress.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpconcept.com/2009/11/21/create-a-custom-page-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 basic steps in branding</title>
		<link>http://www.wpconcept.com/2009/11/20/5-basic-steps-in-branding/</link>
		<comments>http://www.wpconcept.com/2009/11/20/5-basic-steps-in-branding/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 12:06:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[branding]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[logo]]></category>

		<guid isPermaLink="false">http://wpconcept.com/?p=20</guid>
		<description><![CDATA[To make yourself known on the internet you should start the basic branding process. Through branding you will succeed to create a website with unique elements wich will help you. Let&#8217;s supose that you use a free or premium design (like me). For begining it is not necessary to have a unique design to start [...]]]></description>
			<content:encoded><![CDATA[<p>To make yourself known on the internet you should start the basic branding process. Through branding you will succeed to create a website with unique elements wich will help you. Let&#8217;s supose that you use a free or premium design (like me). For begining it is not necessary to have a unique design to start the branding process.</p>
<p><span id="more-20"></span></p>
<p>Let&#8217;s see which are this five steps.</p>
<h3>1. FAVICON</h3>
<p>The first step is to create a unique favicon. The favicon show that you are interested about your website and the visitors will trust you much. To create  the favicon i recommend you to visit <a href="http://www..faviconsr.us">www..faviconsr.us</a> (download ready favicons) or <a href="http://www.favicon.cc">www.favicon.cc</a> (create favicons).</p>
<p>The favicon format can be jpg, png etc. You must be sure that the favicon is square (16×16, 32×32, 64×64 or 128×128). After your favicon is ready, upload it on your hosting account or any file hosting website. After i&#8217;ve uploaded your favicon go to your wordpress Dashboard &gt; Presentation &gt; Theme Editor and open header.php file.</p>
<p>Paste in header.php following code: <em>&lt;link rel=”shortcut icon” href=”faviconpath” /&gt;</em></p>
<p>Replace ‘faviconpath’ with the path of the Favicon. That&#8217;s it. Was easy, right ? Now you should see tha image before the URL in your browser.</p>
<h3>2. LOGO</h3>
<p>The logo is a important part of branding. With little effort and basic knowledge of photoshop or illustrator you will  succeed to create a logo for your website. You must think on something representative for you.</p>
<p>Some logo design tutorials you can find <a href="http://pelfusion.com/tutorials/35-logo-designing-photoshop-tutorials/">here</a></p>
<h3>3. THE GOOD WAY TO WRITE YOUR ARTICLES</h3>
<p>The way you write your articles is very important. This can bring to you more visitors or may disadvantage you and you will lose visitors.</p>
<p>Don&#8217;t write very long articles. Try to summarize the essential in few lines. Use custom fields for a clean look. Read your articles comments and answare at your visitors questions. Don&#8217;t use many bold words and don&#8217;t put many links on your articles.</p>
<h3>4. BLOGROLL</h3>
<p>Here is indicated to put links just from website that are in same category with yours. It is not indicated to put on a wordpress releated blog a link to a car sells website because have no connection with your website.</p>
<h3>5. FEEDS</h3>
<p>Use RSS feed, Twitter, Facebook and others. Put in sidebar links to your social networks profiles and your RSS feed.</p>
<p>I hope these tips are useful for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpconcept.com/2009/11/20/5-basic-steps-in-branding/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Increase more visitors to your website</title>
		<link>http://www.wpconcept.com/2009/11/19/increase-more-visitors-to-your-website/</link>
		<comments>http://www.wpconcept.com/2009/11/19/increase-more-visitors-to-your-website/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 10:48:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[rss feed]]></category>
		<category><![CDATA[seo optimization]]></category>
		<category><![CDATA[social networks]]></category>
		<category><![CDATA[visitors]]></category>

		<guid isPermaLink="false">http://wpconcept.com/?p=16</guid>
		<description><![CDATA[We know that who works in online need a large number of visitors if they want to earn some money with their website. There are many methods to increase your number of visitors but some of that methods are expensive and and it costs money or time. I will mention in this article five useful [...]]]></description>
			<content:encoded><![CDATA[<p>We know that who works in online need a large number of visitors if they want to earn some money with their website. There are many methods to increase your number of visitors but some of that methods are expensive and and it costs money or time.</p>
<p>I will mention in this article five useful methods that will help you to bring more visitors on your website.</p>
<p><span id="more-16"></span></p>
<h3>1. RSS Feed</h3>
<p><img class="alignnone" title="RSS Feed" src="http://www.wpconcept.com/images/rss_feeds.png" alt="" width="416" height="99" /></p>
<p>Use feedburner.com for your RSS feed. Feedburner will help you to have a more control over your RSS subscribers. You will have a tracking system and advanced statistics. Feedburner is easy to use and many useres preferred to work with it.</p>
<h3>2. Social Networks</h3>
<p><img class="alignnone" title="Social Networks" src="http://www.wpconcept.com/images/ft.png" alt="" width="416" height="99" /></p>
<p>Twitter and Facebook are the best way to promote yourself (in my opinion). You can find here a lot of people who have web activities and therefore they will be interested in your website.</p>
<h3>3. SEO Optimization</h3>
<p><img class="alignnone" title="SEO Optimization" src="http://www.wpconcept.com/images/seob.png" alt="" width="416" height="99" /></p>
<p>If you use wordpress for your website you can change the permalink. Chose &#8220;day and name&#8221; format.  This will help you in search engine indexing.</p>
<h3>4. Your Activity</h3>
<p><img class="alignnone" title="Your Activity" src="http://www.wpconcept.com/images/act.png" alt="" width="416" height="99" /></p>
<p>Your activity from other websites are important. If your comments are well many people will be interested in your website to find more articles from you. Therefore do not neglect the way that you write your comments on other websites.</p>
<h3>5. Your Posts</h3>
<p><img class="alignnone" title="Your Posts" src="http://www.wpconcept.com/images/postsb.png" alt="" width="416" height="99" /></p>
<p>You have to familiarize your visitors with a number of articles per day. You have to set objectives to write at least one article per day. For exemple i write one article per day. I wish to write a several articles but my freelance work is a takes time.</p>
<p>I hope these tips are useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpconcept.com/2009/11/19/increase-more-visitors-to-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
