<?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>WereWP &#187; WordPress</title>
	<atom:link href="http://www.werewp.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.werewp.com</link>
	<description>Daily WordPress news</description>
	<lastBuildDate>Thu, 29 Jul 2010 15:10:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to: integrate Facebook Open Graph Protocol into your WordPress theme</title>
		<link>http://www.werewp.com/wordpress/how-to-integrate-facebook-open-graph-protocol-into-your-wordpress-theme/</link>
		<comments>http://www.werewp.com/wordpress/how-to-integrate-facebook-open-graph-protocol-into-your-wordpress-theme/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 21:08:53 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[open graph]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.werewp.com/?p=1230</guid>
		<description><![CDATA[A few months ago, Facebook team uncovered a new major addition of the Facebook API: the support of the Open Graph protocol. Open Graph is not new but the possibility to use it to connect your website to Facebook certainly help it to get more popular.
To put it simple, by adding different meta tags into [...]]]></description>
			<content:encoded><![CDATA[<p>A few months ago, Facebook team uncovered a new major addition of the Facebook API: the support of the Open Graph protocol. Open Graph is not new but the possibility to use it to connect your website to Facebook certainly help it to get more popular.</p>
<p>To put it simple, by adding different meta tags into the head of your page, you give out information about the specific content you deliver, and all Facebook services, such as the share feature or the Like button, will make good use of this information. In the same way, Facebook uses these tags into profile pages, fan pages and applications.</p>
<p><span id="more-1230"></span></p>
<h2>What are the necessary tags to add to your page ?</h2>
<p>Here are all the tags needed:</p>
<ul>
<li><strong>Title</strong>: speaks fr itself, it is the title of your page or your article. This title will appear as title when people will share your article on Facebook, or like it.</li>
<li><strong>Description</strong>: this part will appear as the default description text when people will share your article on Facebook. In WordPress, the best is here to use different descriptions according to the page you are browsing.</li>
<li><strong>Type</strong>: this defines the category of the information you provide on your site. <a title="Open Graph Types" href="http://opengraphprotocol.org/#types" target="_blank">Types are defined in the Open Graph protocol</a>, and for websites three types exist: Blog, Article, Website. In order to be precise, one solution is to define a different type if you are on the homepage or if you are browsing articles</li>
<li><strong>URL</strong>: also speaks for itself &#8211; the URL of the page.</li>
<li><strong>Image</strong>: this image will be added to the content when people share or add a comment using the FBML like button.</li>
<li><strong>Site_name</strong>: speaks for itself, it is the name of your website.</li>
</ul>
<p>To implement it within your WordPress theme, locate the <em><strong>header.php</strong></em><strong> </strong>among your theme files, and edit it with the following variables.</p>
<p>Before to edit the files, you will need the facebook admin id, which can found in the <a title="Facebook insights" href="http://www.facebook.com/insights/" target="_blank">Facebook insights page</a>, when clicking the &#8220;insights for your domain&#8221; button on the top right. You can also specify your app id, if you are using the like button for example (see paragraph below).<br />
You will also need to know the path to the main logo appearing in the header of your site. If you do not have any, I encourage you to create one, and to add into the images folder of your WordPress theme.</p>
<pre class="brush: php;">
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xmlns:fb=&quot;http://www.facebook.com/2008/fbml&quot; xmlns:og=&quot;http://opengraphprotocol.org/schema/&quot; &lt;?php language_attributes(); ?&gt;&gt;
&lt;?php if (have_posts()):while(have_posts()):the_post();endwhile;endif;?&gt;
&lt;!-- Facebook Opengraph --&gt;
	&lt;meta property=&quot;fb:app_id&quot; content=&quot;your_app_id&quot; /&gt;
	&lt;meta property=&quot;fb:admins&quot; content=&quot;your_admin_id&quot; /&gt;
	&lt;meta property=&quot;og:url&quot; content=&quot;&lt;?php the_permalink() ?&gt;&quot;/&gt;
&lt;?php if (is_single()) { ?&gt;
	&lt;meta property=&quot;og:title&quot; content=&quot;&lt;?php single_post_title(''); ?&gt;&quot; /&gt;
	&lt;meta property=&quot;og:description&quot; content=&quot;&lt;?php echo strip_tags(get_the_excerpt($post-&gt;ID)); ?&gt;&quot; /&gt;
	&lt;meta property=&quot;og:type&quot; content=&quot;article&quot; /&gt;
	&lt;meta property=&quot;og:image&quot; content=&quot;&lt;?php echo wp_get_attachment_thumb_url( get_post_thumbnail_id( $post-&gt;ID ) ) ?&gt;&quot; /&gt;
&lt;?php } else { ?&gt;
	&lt;meta property=&quot;og:site_name&quot; content=&quot;&lt;?php bloginfo('name'); ?&gt;&quot; /&gt;
	&lt;meta property=&quot;og:description&quot; content=&quot;&lt;?php bloginfo('description'); ?&gt;&quot; /&gt;
	&lt;meta property=&quot;og:type&quot; content=&quot;website&quot; /&gt;
	&lt;meta property=&quot;og:image&quot; content=&quot;&lt;?php bloginfo('template_url') ?&gt;/path/to-your/logo.jpg&quot; /&gt;
&lt;?php } ?&gt;
</pre>
<p>Then we will add the like button to your site, to show an example of the use of Open Graph data.</p>
<h2>How to add the like button to my WordPress blog?</h2>
<p>After adding the previous information into your header, we will need to decide of a place for the Facebook like to appear, and call <a title="Add Javascript SDK to connect your site to Facebook" href="http://developers.facebook.com/docs/reference/javascript/" target="_blank">Facebook Javascript SDK</a> in order to connect our website and Facebook.*</p>
<p>Before that, you will need to create a Facebook application: no need to be afraid, it can be done in a few steps:</p>
<ul>
<li>Go to <a title="Facebook - Create an application" href="http://www.facebook.com/developers/createapp.php" target="_blank">http://www.facebook.com/developers/createapp.php</a></li>
<li>Give a name to your app, validate,</li>
<li>Copy the app ID that is given to you</li>
<li>In the Connect tab, fill in your blog&#8217;s homepage URL in the Connect URL field, and save.</li>
</ul>
<p><a href="http://www.werewp.com/wp-content/uploads/2010/06/Capture-d’écran-2010-06-02-à-22.20.15.png"><img class="aligncenter size-medium wp-image-1233" title="Connect URL" src="http://www.werewp.com/wp-content/uploads/2010/06/Capture-d’écran-2010-06-02-à-22.20.15-300x151.png" alt="Connect URL" width="300" height="151" /></a></p>
<p>Next step will be to integrate the like button to our articles. For this locate and open <strong><em>single.php</em></strong> in your theme files, and add the following where you want the button to appear. If you want it to appear right after your article content for example, locate <strong>the_content</strong> fonction, and add it after:</p>
<pre class="brush: php;">
&lt;fb:like href=&quot;&lt;?php the_permalink() ?&gt;&quot; layout=&quot;button_count&quot; show_faces=&quot;false&quot; width=&quot;450&quot; action=&quot;like&quot; colorscheme=&quot;light&quot;&gt;&lt;/fb:like&gt;
</pre>
<p>You can change the layout of that button by changing some of the parameters: have a look at the <a title="Facebook like plugin documentation" href="http://developers.facebook.com/docs/reference/plugins/like" target="_blank">Facebook like plugin page</a> for more information.</p>
<p>Then, in order to connect the like button to Facebook, we will need to add the reference to Javascript SDK to the footer of our theme*. For that, locate your <strong><em>functions.php</em></strong> file, and add the following line to it:</p>
<pre class="brush: php;">
&lt;?php
// load facebook API
add_action(&quot;wp_footer&quot;, &quot;werewp_facebook_api&quot;);

function werewp_facebook_api()
{
	$fbapi =  &quot;your_app_id&quot;; // Your application ID
	echo
			&quot;&lt;div id=\&quot;fb-root\&quot;&gt;&lt;/div&gt;
			&lt;script&gt;
			  window.fbAsyncInit = function() {
			    FB.init({appId: $fbapi, status: true, cookie: true,
			             xfbml: true});
			  };
			  (function() {
			    var e = document.createElement('script'); e.async = true;
			    e.src = document.location.protocol +
			      '//connect.facebook.net/en_US/all.js';
			    document.getElementById('fb-root').appendChild(e);
			  }());
			&lt;/script&gt;
			&quot;;
}
?&gt;
</pre>
<p>*As a sidenote, if you are already using some Facebook features on your site, such as a badge for example, you will have to make some changes to that badge and use only FBML code in there, as Facebook Connect is already called now.</p>
<p>And you&#8217;re done! The necessary information is now in the header among the other meta data, the Facebook connection is made through the Javascript SDK, and the facebook like button is added with FBML code. That&#8217;s it, nothing else is needed!<br />
Let me know if it works, and share it with us in the comments! Thank you, and don&#8217;t forget to <a title="@jeherve" href="http://twitter.com/jeherve" target="_blank">follow me on Twitter</a>! ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.werewp.com/wordpress/how-to-integrate-facebook-open-graph-protocol-into-your-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Today in WordPress world &#8211; 26/01</title>
		<link>http://www.werewp.com/wordpress/links-for-2010-01-26/</link>
		<comments>http://www.werewp.com/wordpress/links-for-2010-01-26/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 14:07:07 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[3.0]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.werewp.com/uncategorized/links-for-2010-01-26/</guid>
		<description><![CDATA[

2010 Theme Development
Do you want to follow the development of the future default WordPress theme, delivered to you with every installation? Then you might want to have a look at this website from time to time, to see how things are going on!


WordPress Theme Development Checklist Tool &#124; wplover
A useful checklist to keep next to [...]]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://2010dev.wordpress.com/">2010 Theme Development</a></div>
<div class="delicious-extended">Do you want to follow the development of the future default WordPress theme, delivered to you with every installation? Then you might want to have a look at this website from time to time, to see how things are going on!</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.wplover.com/lab/theme-development-checklist">WordPress Theme Development Checklist Tool | wplover</a></div>
<div class="delicious-extended">A useful checklist to keep next to you while designing WordPress themes: you can check the elements one after another and make sure you have everything before submitting your template to the directory.</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.werewp.com/wordpress/links-for-2010-01-26/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On The Go: Hand drawn theme from Elegant Themes</title>
		<link>http://www.werewp.com/wordpress/on-the-go-hand-drawn-theme-from-elegant-themes/</link>
		<comments>http://www.werewp.com/wordpress/on-the-go-hand-drawn-theme-from-elegant-themes/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 16:27:24 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[theme club]]></category>

		<guid isPermaLink="false">http://www.werewp.com/?p=1092</guid>
		<description><![CDATA[Once again, Nick from Elegantthemes.com has released a stunning theme, graphically beautiful and packed with lots of important features.


On The Go proposes a CMS layout with a featured section by default, but a blog layout is also available. This design is available in 4 unique color schemes, all declinations of this hand drawn style that [...]]]></description>
			<content:encoded><![CDATA[<p>Once again, Nick from <a title="Elegant Themes WordPress theme club" href="http://wpne.ws/elegant" target="_blank">Elegantthemes.com</a> has released a stunning theme, graphically beautiful and packed with lots of important features.</p>
<p style="text-align: center;"><a href="http://wpne.ws/elegant"><img class="aligncenter" title="On The Go WordPress theme" src="http://www.elegantthemes.com/blog/wp-content/uploads/2010/01/onthego-1.jpg" alt="" width="406" height="756" /></a></p>
<p style="text-align: center;">
<p style="text-align: left;"><a title="On The Go WordPress theme" href="http://wpne.ws/onthego" target="_blank">On The Go</a> proposes a CMS layout with a featured section by default, but a blog layout is also available. This design is available in 4 unique color schemes, all declinations of this hand drawn style that appears in all the elements of the theme.</p>
<p style="text-align: left;">Of course, the theme is full of the features common to all themes from <a title="Elegant Themes WordPress club" href="http://wpne.ws/elegant" target="_blank">Elegantthemes</a>, now accessible through the new admin theme panel developed last year.</p>
<p style="text-align: left;">I could say more about that theme, but I guess the best I can do is to advise you to <a title="On The Go WordPress theme" href="http://wpne.ws/onthego" target="_blank">go have a look for yourself</a>!</p>
<p style="text-align: left;">
]]></content:encoded>
			<wfw:commentRss>http://www.werewp.com/wordpress/on-the-go-hand-drawn-theme-from-elegant-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.9 is out!</title>
		<link>http://www.werewp.com/wordpress/wordpress-2-9-is-out/</link>
		<comments>http://www.werewp.com/wordpress/wordpress-2-9-is-out/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 09:28:14 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[2.9]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.werewp.com/?p=1082</guid>
		<description><![CDATA[Just for the week end, and right before Christmas, Automattic makes us a great present, with the release of WordPress 2.9!
We have been talking about 2.9 for a while now, if you followed that blog, you got to know some of the new features that will come with that release, but here is a small [...]]]></description>
			<content:encoded><![CDATA[<p>Just for the week end, and right before Christmas, Automattic makes us a great present, with the release of <strong>WordPress 2.9</strong>!</p>
<p>We have been talking about 2.9 for a while now, if you followed that blog, you got to know some of the new features that will come with that release, but here is a small selection of articles in case you would want a quick summary:</p>
<h4><a href="http://wordpress.org/development/2009/12/wordpress-2-9/">WordPress 2.9, oh so fine</a></h4>
<ul>
<li>Announcement from Matt</li>
</ul>
<h4><a title="Sidebar (widget area) descriptions in WordPress 2.9" rel="bookmark" href="http://justintadlock.com/archives/2009/11/24/sidebar-widget-area-descriptions-in-wordpress-2-9">Sidebar (widget area) descriptions in WordPress 2.9</a></h4>
<ul>
<li>Justin Tadlock describes the latest widget area description abilities of WordPress 2.9</li>
</ul>
<h4><a title="Geeky bits in WordPress 2.9" href="http://yoast.com/wordpress-2-9-geeky-bits/" target="_blank">Geeky bits in WordPress 2.9</a></h4>
<ul>
<li>Joost de Valk talks about the hidden secrets of 2.9!</li>
</ul>
<h4><a title="Everything you need to know about WordPress 2.9’s post image feature" rel="bookmark" href="http://justintadlock.com/archives/2009/11/16/everything-you-need-to-know-about-wordpress-2-9s-post-image-feature">Everything you need to know about WordPress 2.9’s post image feature</a></h4>
<ul>
<li>Justin Tadlock explains us all about the post image feature</li>
</ul>
<h4><a title="Permanent Link to The Ultimative Guide For the_post_thumbnail In WordPress 2.9" rel="bookmark" href="http://wpengineer.com/the-ultimative-guide-for-the_post_thumbnail-in-wordpress-2-9/">The Ultimative Guide For the_post_thumbnail In WordPress 2.9</a></h4>
<ul>
<li>Michael Preuss describes us what we can do with the new post_thumbnail function</li>
</ul>
<h4><a title="Permanent Link to WordPress 2.9 Packs in Loads of Features: Hands-on Review" rel="bookmark" href="http://weblogtoolscollection.com/archives/2009/12/03/wordpress-2-9-packs-in-loads-of-features-hands-on-review/">WordPress 2.9 Packs in Loads of Features: Hands-on Review</a></h4>
<ul>
<li>Keith Dsouza makes a tour of all 2.9 features</li>
</ul>
<h4><a title="WordPress 2.9 description" href="http://codex.wordpress.org/Version_2.9" target="_blank">Version 2.9</a></h4>
<ul>
<li>From the official codex page, all changes of WP 2.9</li>
</ul>
<p>So, Enjoy this new WordPress version, and do not hesitate to give your feedback after you installed. I have just made the switch here, and somehow I fell like the blog is a bit faster than before. Maybe it is a just a feeling that I have though, so let me know if you realize the same for your own blog!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.werewp.com/wordpress/wordpress-2-9-is-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Premiumthemes.net rebrands and becomes Templatic!</title>
		<link>http://www.werewp.com/wordpress/premiumthemes-net-rebrands-and-becomes-templatic/</link>
		<comments>http://www.werewp.com/wordpress/premiumthemes-net-rebrands-and-becomes-templatic/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 17:06:12 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[club]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[theme club]]></category>

		<guid isPermaLink="false">http://www.werewp.com/?p=1066</guid>
		<description><![CDATA[
Do you remember Premiumthemes.net? Created by R. Bhavesh, also the creator for cssace.com, it has been one of the places to look for high quality WordPress themes for some time now.
With frequent releases of themes for all needs (from the wedding site to the kitchen diary), it fits of the needs of everyone and also [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a title="WordPress themes" href="http://wpne.ws/templatic" target="_blank"><img src='http://www.werewp.com/wp-content/uploads/2009/12/Templatic.png' alt='Templatic WordPress theme club' /></a></p>
<p>Do you remember <a title="Templatic WordPress theme club" href="http://wpne.ws/templatic" target="_blank">Premiumthemes.net</a>? Created by <a title="R: Bhavesh" href="http://twitter.com/rbhavesh" target="_blank">R. Bhavesh</a>, also the creator for <a title="cssace.com" href="http://cssace.com/" target="_blank">cssace.com</a>, it has been one of the places to look for high quality WordPress themes for some time now.</p>
<p>With frequent releases of themes for all needs (from the <a title="Wedding WordPress theme" href="http://wpne.ws/wedding" target="_blank">wedding site</a> to the <a title="Kitchen diary WordPress theme" href="http://wpne.ws/p" target="_blank">kitchen diary</a>), it fits of the needs of everyone and also offers a club membership that will fit the needs of a lot of WordPress developers: for $249 you get access to all the themes and PSDs!</p>
<p>Go have a look! If <a title="Templatic WordPres theme club" href="http://wpne.ws/templatic" target="_blank">Templatic</a> is as successful as Premiumthemes.net was, this website is going to have an impact on the theme market!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.werewp.com/wordpress/premiumthemes-net-rebrands-and-becomes-templatic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Today in WordPress world &#8211; 09/12</title>
		<link>http://www.werewp.com/wordpress/today-wordpress-world-0912/</link>
		<comments>http://www.werewp.com/wordpress/today-wordpress-world-0912/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 14:08:17 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.werewp.com/?p=1059</guid>
		<description><![CDATA[A new theme from Elegantthemes:
This theme comes in three different colors and seems perfect for a Portoflio site.
Got urgent Wordpress questions?
This new project by Darren Hoyt proposes help from pros to solve Wordpress emergency issues. You have been looking for the answers, without success? You did not have time to solve this issue and your [...]]]></description>
			<content:encoded><![CDATA[<h2>A new theme from <a title="Elegant Themes WordPress theme club" href="http://wpne.ws/elegant" target="_blank">Elegantthemes</a>:</h2>
<div class="wp-caption aligncenter" style="width: 590px"><a href="http://wpne.ws/elegant"><img title="Lumin WordPress theme" src="http://www.elegantthemes.com/images/blog/lumin-1.jpg" alt="Lumin WordPress theme" width="580" height="1112" /></a><p class="wp-caption-text">Lumin WordPress theme</p></div>
<p>This theme comes in three different colors and seems perfect for a Portoflio site.</p>
<h2>Got urgent <a title="Wpquestions" href="http://www.wpquestions.com/" target="_blank">Wordpress questions</a>?</h2>
<p><a href="http://www.wpquestions.com/"><img class="aligncenter" title="Wpquestions" src="http://www.wpquestions.com/images/logo.png" alt="WordPress questions" width="198" height="43" /></a>This new project by Darren Hoyt proposes help from pros to solve Wordpress emergency issues. You have been <a title="Help coding your WordPress theme" href="http://www.werewp.com/wordpress/need-some-help-coding-your-wordpress-theme/" target="_self">looking for the answers</a>, without success? You did not have time to solve this issue and your project has to be handled by tomorrow? <a title="Wp questions" href="http://www.wpquestions.com/" target="_blank">WPQuestions</a> seems to be the good place to start.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.werewp.com/wordpress/today-wordpress-world-0912/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Need some help coding your WordPress theme?</title>
		<link>http://www.werewp.com/wordpress/need-some-help-coding-your-wordpress-theme/</link>
		<comments>http://www.werewp.com/wordpress/need-some-help-coding-your-wordpress-theme/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 09:47:29 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.werewp.com/?p=1054</guid>
		<description><![CDATA[For all beginners with WordPress, and sometimes even for pros, a bit of help is needed when looking for a code snippet or a special WordPress function. Of course, Codex is here for that, and there are plenty of great tutorials on the Internet, but sometimes it is not enough: the information can be hard [...]]]></description>
			<content:encoded><![CDATA[<p>For all beginners with WordPress, and sometimes even for pros, a bit of help is needed when looking for a code snippet or a special WordPress function. Of course, Codex is here for that, and there are <a title="WordPress tutorials" href="http://www.werewp.com/tag/tutorial/" target="_blank">plenty of great tutorials</a> on the Internet, but sometimes it is not enough: the information can be hard to find, or you may not have the time to look.</p>
<p>In such cases, a WordPress search engine would be handy: that it where WPLookup comes in:</p>
<p style="text-align: center;"><a title="Find WordPress documentation" href="http://wplookup.com" target="_blank"><img class="aligncenter" src="http://www.werewp.com/wp-content/uploads/2009/12/wplookup1.png" alt="Wp Lookup" width="603" height="193" /></a></p>
<p>The idea is simple: using tools such as <a title="PHPXref" href="http://xref.yoast.com/" target="_blank">PHP Cross reference of WordPress source</a>, from <a title="Yoast" href="http://yoast.com" target="_blank">Yoast</a>, and looking into the Codex, this search engine gives you the answers you need in just a search. And to make it even simpler,<a title="Add WPLookup to browser" href="http://wplookup.com/add-to-browser" target="_blank"> you can add it to your browser default search tools</a>.</p>
<p>To conclude, this search engine will help you find info about WordPress functions in a few seconds. And if you are looking for other tools to speed up your coding process, do not hesitate to use <a title="WPlookup" href="http://wplookup.com" target="_blank">WPLookup</a> in parallel with these 3 other tools:</p>
<ul>
<li><a href="http://www.dbswebsite.com/design/wordpress-reference/">Web Design WordPress function list</a></li>
<li><a title="WordPress cheat sheet" href="http://woorkup.com/2009/11/01/wordpress-visual-cheat-sheet/" target="_blank">WordPress Visual Cheat Sheet</a></li>
<li><a href="http://webdesignledger.com/resources/13-helpful-cheat-sheets-for-building-wordpress-themes">13 Helpful Cheat Sheets for Building WordPress Themes<br />
</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.werewp.com/wordpress/need-some-help-coding-your-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DO NOT download WordPress themes from untrusted sources</title>
		<link>http://www.werewp.com/wordpress/do-not-download-wordpress-themes-from-untrusted-sources/</link>
		<comments>http://www.werewp.com/wordpress/do-not-download-wordpress-themes-from-untrusted-sources/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 22:16:07 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.werewp.com/?p=1050</guid>
		<description><![CDATA[As WordPress is geting more and more popular, there are more and more people out there ready to take advantage of the situation and propose you free products, however these free products are not always what they seem. With the popularity increase of Premium theme markets, these shady websites can be found more and more [...]]]></description>
			<content:encoded><![CDATA[<p>As WordPress is geting more and more popular, there are more and more people out there ready to take advantage of the situation and propose you free products, however these free products are not always what they seem. With the popularity increase of Premium theme markets, these shady websites can be found more and more easily, and end users end up using themes with encrypted code in them.</p>
<p>So please, and I am here <strong>relaying the info published on <a title="Stop Downloading WordPress Themes from Shady Sites" href="http://www.themelab.com/2009/12/08/stop-downloading-wordpress-themes-from-shady-sites/" target="_blank">themelab.com</a> and <a title="Don’t Steal Premium WordPress Themes" href="http://wpengineer.com/3rd-door-today-the-advice-dont-steal-premium-wordpress-themes/" target="_blank">wpengineer.com</a></strong> recently, <strong>DO NOT download WordPress themes from untrusted sources</strong>. Leland posted lots of solutions and demonstrated pretty well how dangerous it can be to trust in such websites, so do not hesitate to go have a look at <a title="Advices on downloading WordPress themes" href="http://www.themelab.com/2009/12/08/stop-downloading-wordpress-themes-from-shady-sites/" target="_blank">his post</a>, it could avoid you lots of issues in the future!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.werewp.com/wordpress/do-not-download-wordpress-themes-from-untrusted-sources/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My Snippets WordPress Plugin</title>
		<link>http://www.werewp.com/wordpress/my-snippets-wordpress-plugin/</link>
		<comments>http://www.werewp.com/wordpress/my-snippets-wordpress-plugin/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 18:05:35 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.werewp.com/?p=1045</guid>
		<description><![CDATA[My Snippets: WordPress Plugin.
Another great plugin from Justin tadlock, that will allow you to master your plugins better than ever!
What this plugin does is add an extra meta box on the post editor that allows you to input custom content. This content is then displayed using the Snippet widget in any widget area you choose.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://justintadlock.com/archives/2009/12/03/my-snippets-wordpress-plugin">My Snippets: WordPress Plugin</a>.</p>
<p>Another great plugin from Justin tadlock, that will allow you to master your plugins better than ever!</p>
<p>What this plugin does is add an extra meta box on the post editor that allows you to input custom content. This content is then displayed using the Snippet widget in any widget area you choose.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.werewp.com/wordpress/my-snippets-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Today in WordPress world &#8211; 19/08</title>
		<link>http://www.werewp.com/wordpress/links-for-2009-08-19/</link>
		<comments>http://www.werewp.com/wordpress/links-for-2009-08-19/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 14:23:19 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[list]]></category>

		<guid isPermaLink="false">http://www.werewp.com/?p=876</guid>
		<description><![CDATA[
23+ Excellent Tutorials For WordPress Theme Developers

Here are 23 tutorials to help you get the best out of WordPress. Hacks, good use of tags, display options&#8230; This list can be interesting for everyone!
]]></description>
			<content:encoded><![CDATA[<ul>
<li><a title="23 excellent WordPress tutorials" href="http://webdeveloperplus.com/wordpress/23-excellent-tutorials-for-wordpress-theme-developers/" target="_blank">23+ Excellent Tutorials For WordPress Theme Developers</a></li>
</ul>
<p>Here are 23 tutorials to help you get the best out of WordPress. Hacks, good use of tags, display options&#8230; This list can be interesting for everyone!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.werewp.com/wordpress/links-for-2009-08-19/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
