<?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>István Ványi&#187; Programming</title>
	<atom:link href="http://www.vanyi.net/category/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vanyi.net</link>
	<description>István Ványi personal site</description>
	<lastBuildDate>Wed, 31 Aug 2011 17:43:38 +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>Lower case a string in bash</title>
		<link>http://www.vanyi.net/programming/lower-case-a-string-in-bash/</link>
		<comments>http://www.vanyi.net/programming/lower-case-a-string-in-bash/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 05:37:19 +0000</pubDate>
		<dc:creator>Istvan</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Bash]]></category>

		<guid isPermaLink="false">http://www.vanyi.net/programming/bash-endless-loop-2/</guid>
		<description><![CDATA[How do I lower case a string in bash?

?View Code BASH/bin/mv $file $&#40;echo $file &#124; tr '[A-Z]' '[a-z]'&#93;&#41;

Where $file is the file name we want lower cased.
Lower case a string in bash is a post from: István Ványi


No related posts.<p><a href="http://www.vanyi.net/programming/lower-case-a-string-in-bash/">Lower case a string in bash</a> is a post from: <a href="http://www.vanyi.net" title="István Ványi">István Ványi</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p>How do I lower case a string in bash?</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p189code2'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p1892"><td class="code" id="p189code2"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #007800;">$file</span> $<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$file</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">tr</span> <span style="color: #ff0000;">'[A-Z]'</span> <span style="color: #ff0000;">'[a-z]'</span><span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></td></tr></table></div>

<p>Where $file is the file name we want lower cased.</p>
<p><a href="http://www.vanyi.net/programming/lower-case-a-string-in-bash/">Lower case a string in bash</a> is a post from: <a href="http://www.vanyi.net" title="István Ványi">István Ványi</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vanyi.net/programming/lower-case-a-string-in-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bash endless loop</title>
		<link>http://www.vanyi.net/programming/bash-endless-loop/</link>
		<comments>http://www.vanyi.net/programming/bash-endless-loop/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 05:35:20 +0000</pubDate>
		<dc:creator>Istvan</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Bash]]></category>

		<guid isPermaLink="false">http://www.vanyi.net/?p=179</guid>
		<description><![CDATA[How can I execute something to run forever, like an endless loop in bash?

?View Code BASHwhile &#91; 1 = 1 &#93;
do
   echo &#34;Print this string forever: bash endless loop&#34;;
done

Bash endless loop is a post from: István Ványi


No related posts.<p><a href="http://www.vanyi.net/programming/bash-endless-loop/">Bash endless loop</a> is a post from: <a href="http://www.vanyi.net" title="István Ványi">István Ványi</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p>How can I execute something to run forever, like an endless loop in <a href="http://www.vanyi.net/tag/bash" title="Endless loop in bash">bash</a>?</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p179code4'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p1794"><td class="code" id="p179code4"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">while</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #000000;">1</span> = <span style="color: #000000;">1</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">do</span>
   <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Print this string forever: bash endless loop&quot;</span>;
<span style="color: #000000; font-weight: bold;">done</span></pre></td></tr></table></div>

<p><a href="http://www.vanyi.net/programming/bash-endless-loop/">Bash endless loop</a> is a post from: <a href="http://www.vanyi.net" title="István Ványi">István Ványi</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vanyi.net/programming/bash-endless-loop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress remove » / &#187; from page title</title>
		<link>http://www.vanyi.net/programming/wordpress-remove-%c2%bb-from-page-title/</link>
		<comments>http://www.vanyi.net/programming/wordpress-remove-%c2%bb-from-page-title/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 19:04:56 +0000</pubDate>
		<dc:creator>Istvan</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://www.vanyi.net/programming/wordpress-remove-%c2%bb-from-page-title/</guid>
		<description><![CDATA[To remove » / &#187; from wordpress script, edit header.php in your theme files and change:

?View Code PHPwp_title&#40;&#41;

to

?View Code PHPwp_title&#40;&#34;&#34;&#41;

Wordpress remove » / &#187; from page title is a post from: István Ványi


No related posts.<p><a href="http://www.vanyi.net/programming/wordpress-remove-%c2%bb-from-page-title/">Wordpress remove » / &raquo; from page title</a> is a post from: <a href="http://www.vanyi.net" title="István Ványi">István Ványi</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p>To remove » / &raquo; from wordpress script, edit header.php in your theme files and change:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p155code7'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p1557"><td class="code" id="p155code7"><pre class="php" style="font-family:monospace;">wp_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span></pre></td></tr></table></div>

<p>to</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p155code8'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p1558"><td class="code" id="p155code8"><pre class="php" style="font-family:monospace;">wp_title<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span></pre></td></tr></table></div>

<p><a href="http://www.vanyi.net/programming/wordpress-remove-%c2%bb-from-page-title/">Wordpress remove » / &raquo; from page title</a> is a post from: <a href="http://www.vanyi.net" title="István Ványi">István Ványi</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vanyi.net/programming/wordpress-remove-%c2%bb-from-page-title/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress: Remove &#8220;Blog Archive&#8221; from page title</title>
		<link>http://www.vanyi.net/programming/wordpress-remove-blog-archive-from-page-title/</link>
		<comments>http://www.vanyi.net/programming/wordpress-remove-blog-archive-from-page-title/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 06:47:43 +0000</pubDate>
		<dc:creator>Istvan</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.vanyi.net/programming/wordpress-remove-blog-archive-from-page-title-2/</guid>
		<description><![CDATA[To remove Blog Archive from blog post title, in administrative area of your blog use Theme Editor, edit header.php.
Replace this code:

?View Code PHPbloginfo&#40;'name'&#41;; ?&#62; &#60;?php if &#40; is_single&#40;&#41; &#41; &#123; ?&#62; &#60;?php &#125; ?&#62; &#60;?php wp_title&#40;&#41;; ?&#62;&#60;/title&#62;


with:

?View Code PHP&#60;title&#62;&#60;?php wp_title&#40;&#41;; ?&#62;&#60;?php if &#40; !is_home&#40;&#41; &#41; &#123; ?&#62; - &#60;?php &#125; ?&#62;&#60;?php bloginfo&#40;'name'&#41;; ?&#62;&#60;/title&#62;

Click Update file [...]<p><a href="http://www.vanyi.net/programming/wordpress-remove-blog-archive-from-page-title/">Wordpress: Remove &#8220;Blog Archive&#8221; from page title</a> is a post from: <a href="http://www.vanyi.net" title="István Ványi">István Ványi</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p>To remove <strong>Blog Archive</strong> from blog post title, in administrative area of your blog use Theme Editor, edit <strong>header.php</strong>.</p>
<p>Replace this code:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p110code11'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p11011"><td class="code" id="p110code11"><pre class="php" style="font-family:monospace;">bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'name'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> is_single<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> <span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span><span style="color: #339933;">&lt;/</span>title<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p><span id="more-110"></span><br />
with:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p110code12'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p11012"><td class="code" id="p110code12"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>title<span style="color: #339933;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;?</span>php wp_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;&lt;?</span>php <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span>is_home<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> <span style="color: #339933;">-</span> <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;&lt;?</span>php bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'name'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span><span style="color: #339933;">&lt;/</span>title<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>Click Update file and you should get better titles on your blog.</p>
<p><a href="http://www.vanyi.net/programming/wordpress-remove-blog-archive-from-page-title/">Wordpress: Remove &#8220;Blog Archive&#8221; from page title</a> is a post from: <a href="http://www.vanyi.net" title="István Ványi">István Ványi</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vanyi.net/programming/wordpress-remove-blog-archive-from-page-title/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress: Hide protected post on Recent Post widget</title>
		<link>http://www.vanyi.net/programming/wordpress-hide-protected-post-on-recent-post-widget/</link>
		<comments>http://www.vanyi.net/programming/wordpress-hide-protected-post-on-recent-post-widget/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 19:15:45 +0000</pubDate>
		<dc:creator>Istvan</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.vanyi.net/?p=83</guid>
		<description><![CDATA[I am using the WP Hide Post and I didn&#8217;t like that the password protected posts are displayed on the front Recent Post section.
I added 2 small php code and now there are no protected posts on Recent Post.
The way is:
1. Change wp-includes/default-widgets.php file

?View Code PHP$r = new WP_Query&#40;array&#40;'showposts' =&#38;gt; $number, 'nopaging' =&#38;gt; 0, 'post_status' [...]<p><a href="http://www.vanyi.net/programming/wordpress-hide-protected-post-on-recent-post-widget/">Wordpress: Hide protected post on Recent Post widget</a> is a post from: <a href="http://www.vanyi.net" title="István Ványi">István Ványi</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p>I am using the <a href="http://anappleaday.konceptus.net/posts/wp-hide-post/">WP Hide Post</a> and I didn&#8217;t like that the password protected posts are displayed on the front Recent Post section.</p>
<p>I added 2 small php code and now there are no protected posts on Recent Post.</p>
<p>The way is:</p>
<p><span id="more-83"></span>1. Change wp-includes/default-widgets.php file</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p83code17'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p8317"><td class="code" id="p83code17"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$r</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> WP_Query<span style="color: #009900;">&#40;</span><a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'showposts'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #000088;">$number</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'nopaging'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'post_status'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #0000ff;">'publish'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'caller_get_posts'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>to</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p83code18'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p8318"><td class="code" id="p83code18"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$r</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> WP_Query<span style="color: #009900;">&#40;</span><a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'showposts'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #000088;">$number</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'nopaging'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'post_status'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #0000ff;">'publish'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'caller_get_posts'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'post_password'</span><span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span><span style="color: #0000ff;">'hide'</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>2. Change wp-includes/query.php file</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p83code19'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p8319"><td class="code" id="p83code19"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span><a href="http://www.php.net/isset"><span style="color: #990000;">isset</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$q</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'caller_get_posts'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
    <span style="color: #000088;">$q</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'caller_get_posts'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>to</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p83code20'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p8320"><td class="code" id="p83code20"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>current_user_can<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'manage_options'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;</span>amp<span style="color: #339933;">;&amp;</span>amp<span style="color: #339933;">;</span> <a href="http://www.php.net/isset"><span style="color: #990000;">isset</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$q</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'post_password'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">==</span><span style="color: #0000ff;">'hide'</span><span style="color: #009900;">&#41;</span>
    <span style="color: #000088;">$where</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot; AND (<span style="color: #006699; font-weight: bold;">$wpdb</span>-&amp;gt;posts.post_password = '') &quot;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span><a href="http://www.php.net/isset"><span style="color: #990000;">isset</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$q</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'caller_get_posts'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
    <span style="color: #000088;">$q</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'caller_get_posts'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p><a href="http://www.vanyi.net/programming/wordpress-hide-protected-post-on-recent-post-widget/">Wordpress: Hide protected post on Recent Post widget</a> is a post from: <a href="http://www.vanyi.net" title="István Ványi">István Ványi</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vanyi.net/programming/wordpress-hide-protected-post-on-recent-post-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

