<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.2" -->
<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/"
	>

<channel>
	<title>pootato.org &#187; Wordpress</title>
	<link>http://pootato.org</link>
	<description>Tutorials for your website</description>
	<pubDate>Mon, 26 May 2008 19:56:42 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>
	<language>en</language>
			<item>
		<title>Disable WP fancy quotes and other</title>
		<link>http://pootato.org/tips-and-tricks/wordpress/disable-wp-fancy-quotes-and-other/</link>
		<comments>http://pootato.org/tips-and-tricks/wordpress/disable-wp-fancy-quotes-and-other/#comments</comments>
		<pubDate>Sat, 25 Aug 2007 23:07:22 +0000</pubDate>
		<dc:creator>Clara</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://pootato.org/tips-and-tricks/wordpress/disable-wp-fancy-quotes-and-other/</guid>
		<description><![CDATA[&#034;Wptexturize&#034; was something I found very annoying because it transforms &#034; into “ and &#8211; into – etc. This is annoying when posting code snippets :/
If you want to disable this on all your pages like me, just add this snippet in your header:
&#60;? remove_filter ('the_content&#039;, &#039;wptexturize&#039;);
remove_filter (&#039;comment_text&#039;, &#039;wptexturize&#039;);
remove_filter (&#039;single_post_title&#039;, &#039;wptexturize&#039;);
remove_filter (&#039;the_title&#039;, &#039;wptexturize&#039;);
remove_filter (&#039;the_excerpt&#039;, &#039;wptexturize&#039;); [...]]]></description>
			<content:encoded><![CDATA[<p>&#034;Wptexturize&#034; was something I found very annoying because it transforms <samp>&#034;</samp> into <samp>“</samp> and <samp>&#8211;</samp> into <samp>–</samp> etc. This is annoying when posting code snippets :/</p>
<p>If you want to disable this on all your pages like me, just add this snippet in your header:</p>
<p><code>&lt;? remove_filter ('<strong>the_content</strong>&#039;, &#039;wptexturize&#039;);<br />
remove_filter (&#039;<strong>comment_text</strong>&#039;, &#039;wptexturize&#039;);<br />
remove_filter (&#039;<strong>single_post_title</strong>&#039;, &#039;wptexturize&#039;);<br />
remove_filter (&#039;<strong>the_title</strong>&#039;, &#039;wptexturize&#039;);<br />
remove_filter (&#039;<strong>the_excerpt</strong>&#039;, &#039;wptexturize&#039;); ?&gt;</code></p>
<p>Of course, if you want to keep fancy quotes in your title, remove the corresponding line. That is to say:</p>
<p><code>remove_filter ('<strong>single_post_title</strong>&#039;, &#039;wptexturize&#039;);</code></p>
<p>Hope it helps!</p>
<p class="akst_link"><a href="http://pootato.org/?p=130&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_130" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://pootato.org/tips-and-tricks/wordpress/disable-wp-fancy-quotes-and-other/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Styling admin comment</title>
		<link>http://pootato.org/tips-and-tricks/wordpress/styling-admin-comment/</link>
		<comments>http://pootato.org/tips-and-tricks/wordpress/styling-admin-comment/#comments</comments>
		<pubDate>Thu, 23 Aug 2007 13:21:36 +0000</pubDate>
		<dc:creator>Clara</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://pootato.org/tips-and-tricks/wordpress/styling-admin-comment/</guid>
		<description><![CDATA[Here is Wordpress default comment template:
 &#60;li &#60;?php echo $oddcomment; ?&#62; id=&#034;comment-&#60;?php comment_ID() ?&#62;&#034;&#62;
&#60;cite&#62;&#60;?php comment_author_link() ?&#62;&#60;/cite&#62; Says:
&#60;?php if ($comment-&#62;comment_approved == &#039;0&#039;) : ?&#62;
&#60;em&#62;Your comment is awaiting moderation.&#60;/em&#62;
&#60;?php endif; ?&#62;&#60;br /&#62;
&#60;small class=&#034;commentmetadata&#034;&#62;&#60;a href=&#034;#comment-&#60;?php comment_ID() ?&#62;&#034; title=&#034;"&#62;&#60;?php comment_date(&#039;F jS, Y&#039;) ?&#62; at &#60;?php comment_time() ?&#62;&#60;/a&#62; &#60;?php edit_comment_link(&#039;edit&#039;,&#039;  &#039;,&#034;); ?&#62;&#60;/small&#62;
&#60;?php comment_text() ?&#62;
&#60;/li&#62; 
In the first line, just [...]]]></description>
			<content:encoded><![CDATA[<p>Here is Wordpress default comment template:</p>
<p><code> &lt;li <strong>&lt;?php echo $oddcomment; ?&gt;</strong> id=&#034;comment-&lt;?php comment_ID() ?&gt;&#034;&gt;<br />
&lt;cite&gt;&lt;?php comment_author_link() ?&gt;&lt;/cite&gt; Says:<br />
&lt;?php if ($comment-&gt;comment_approved == &#039;0&#039;) : ?&gt;<br />
&lt;em&gt;Your comment is awaiting moderation.&lt;/em&gt;<br />
&lt;?php endif; ?&gt;&lt;br /&gt;<br />
&lt;small class=&#034;commentmetadata&#034;&gt;&lt;a href=&#034;#comment-&lt;?php comment_ID() ?&gt;&#034; title=&#034;"&gt;&lt;?php comment_date(&#039;F jS, Y&#039;) ?&gt; at &lt;?php comment_time() ?&gt;&lt;/a&gt; &lt;?php edit_comment_link(&#039;edit&#039;,&#039;  &#039;,&#034;); ?&gt;&lt;/small&gt;<br />
&lt;?php comment_text() ?&gt;<br />
&lt;/li&gt; </code></p>
<p>In the first line, just look for <samp>&lt;?php echo $oddcomment; ?&gt;</samp> and replace it with:</p>
<p><code> &lt;? if($comment-&gt;comment_author == "<strong>Your nickname</strong>&#034;) echo &#039; class=&#034;admin&#034;&#039;; else echo $oddcomment; ?&gt; </code></p>
<p>Then, in your stylesheet, add a different style for <samp>.admin</samp> ! :)</p>
<p class="akst_link"><a href="http://pootato.org/?p=128&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_128" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://pootato.org/tips-and-tricks/wordpress/styling-admin-comment/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress essential plugins</title>
		<link>http://pootato.org/tips-and-tricks/wordpress/wordpress-essential-plugins/</link>
		<comments>http://pootato.org/tips-and-tricks/wordpress/wordpress-essential-plugins/#comments</comments>
		<pubDate>Sun, 19 Aug 2007 21:27:40 +0000</pubDate>
		<dc:creator>Clara</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://pootato.org/tips-and-tricks/wordpress/wordpress-essential-plugins/</guid>
		<description><![CDATA[Here is an other list of essential plugins for Wordpress :) You can see the list of plugins I use on this page.
Lighter admin drop menus
This one fixes something I didn&#039;t like in the default admin menu: having to click and wait two or three times before being on the page you want! In my [...]]]></description>
			<content:encoded><![CDATA[<p>Here is an other list of essential plugins for Wordpress :) You can see the list of plugins I use on <a href="http://pootato.org/about/plugins-used/">this page</a>.</p>
<p><a href="http://www.italyisfalling.com/lighter-admin-drop-menus-wordpress-plugin">Lighter admin drop menus</a><br />
This one fixes something I didn&#039;t like in the default admin menu: having to click and wait two or three times before being on the page you want! In my opinion, this plugin produces a more beautiful menu than the one from <a href="http://planetozh.com/blog/my-projects/wordpress-admin-menu-drop-down-css/">PlanetOzh</a>! The latter was a bit buggy when the menu was too &#034;long&#034;.</p>
<p><a href="http://akismet.com/">Akismet</a><br />
Blocks all spam comments. Absolutely necessary :)</p>
<p><a href="http://lesterchan.net/portfolio/programming.php">Wp Downloads Manager</a><br />
A plugin I love for its ease of use and it was totally what I was looking for. I was using a separate script to do what it does before. Now, it&#039;s super easy to add downloads and track them!</p>
<p> <a href="http://pootato.org/tips-and-tricks/wordpress/wordpress-essential-plugins/#more-110" class="more-link">(more&#8230;)</a></p>
<p class="akst_link"><a href="http://pootato.org/?p=110&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_110" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://pootato.org/tips-and-tricks/wordpress/wordpress-essential-plugins/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Custom smilies</title>
		<link>http://pootato.org/tips-and-tricks/wordpress/custom-smilies/</link>
		<comments>http://pootato.org/tips-and-tricks/wordpress/custom-smilies/#comments</comments>
		<pubDate>Thu, 16 Aug 2007 20:42:55 +0000</pubDate>
		<dc:creator>Clara</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://pootato.org/tips-and-tricks/wordpress/custom-smilies/</guid>
		<description><![CDATA[Be careful when editing source codes! Go to the /wp-includes folder, look for functions.php and make a backup.  Find this line:
$wpsmiliestrans = array(
Below this line, you will find something like:
':smile:&#039; =&#62; &#039;icon_smile.gif&#039;,
etc. (There are several lines for all the smileys) Before the arrow (=&#62;) is the text to be converted to smiley and after [...]]]></description>
			<content:encoded><![CDATA[<p>Be careful when editing source codes! Go to the /wp-includes folder, look for functions.php and make a backup.  Find this line:</p>
<p><code>$wpsmiliestrans = array(</code></p>
<p>Below this line, you will find something like:</p>
<p><code>'<strong>:smile:</strong>&#039; =&gt; &#039;<em>icon_smile.gif</em>&#039;,</code></p>
<p>etc. (There are several lines for all the smileys) Before the arrow (<samp>=&gt;</samp>) is the text to be converted to smiley and after the arrow is the smiley file. Replace them by your own smileys and don&#039;t forget to upload them to the /wp-includes/images folder. Be careful, keep the <samp>&#039; &#039;</samp> (apostrophes) and the <samp>,</samp> (comma)! You can also add more smileys, instead of replacing.</p>
<p>(note) You can customize the smileys! I recommend this snippet:</p>
<p><code>img.wp-smiley {<br />
vertical-align: middle;<br />
}</code></p>
<p>This will align your smileys vertically in the middle in your text.</p>
<p class="akst_link"><a href="http://pootato.org/?p=61&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_61" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://pootato.org/tips-and-tricks/wordpress/custom-smilies/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
