<?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>Michele&#039;s Blog &#187; wordpress</title>
	<atom:link href="http://www.michelem.org/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.michelem.org</link>
	<description>io, me e michele</description>
	<lastBuildDate>Mon, 30 Jan 2012 09:57:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Integrate WordPress functions on Magento</title>
		<link>http://www.michelem.org/2010/03/17/integrate-wordpress-functions-on-magento/</link>
		<comments>http://www.michelem.org/2010/03/17/integrate-wordpress-functions-on-magento/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 16:13:54 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=988</guid>
		<description><![CDATA[Per integrare tutte le funzioni di WordPress su Magento in modo da poter fare chiamate come wp_list_pages(), wp_list_categories() o la famosa WP_Query, basta far caricare WordPress da Magento prima che si carichi lui stesso (per evitare il sovrapporsi di header e funzioni varie). Aprite il file index.php di Magento, all&#8217;inzio inserite le due righe: define(&#039;WP_USE_THEMES&#039;, false); require(&#039;/&#60;you absolute path to wordpress root&#62;/wp-load.php&#039;); [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<div>
<p>Per integrare tutte le funzioni di <a href="/tag/wordpress">WordPress</a> su <a href="/tag/magento">Magento</a> in modo da poter fare chiamate come wp_list_pages(), wp_list_categories() o la famosa WP_Query, basta far caricare WordPress da Magento prima che si carichi lui stesso (per evitare il sovrapporsi di header e funzioni varie).</p>
<p>Aprite il file index.php di Magento, all&#8217;inzio inserite le due righe:</p>
<pre class="brush: php">
define(&#039;WP_USE_THEMES&#039;, false);
require(&#039;/&lt;you absolute path to wordpress root&gt;/wp-load.php&#039;);
</pre>
<div>Ora rimane solo un piccolo problema, sia WordPress che Magento usano una funzione per fare la traduzione delle frasi, questa funzione purtroppo si chiama allo stesso moto &#8220;__&#8221; (2 underscore attaccati), per questo Magento andra&#8217; in crisi (error redeclared function).</div>
<div>Per risolvere il problema basta andare ad aggiungere una condizione alla funzione di magento, nel file &#8220;app/code/core/Mage/Core/functions.php&#8221; fate diventare la funzione &#8220;__()&#8221; cosi&#8217;:</div>
<pre class="brush: php">
if (!function_exists(&#039;__&#039;)) {
function __() {
return Mage::app()-&gt;getTranslator()-&gt;translate(func_get_args();
}
}</pre>
<p>Ora siete in grado di usare tutte le funzioni WordPress all&#8217;interno dei template Magento senza dover fare nulla di piu&#8217;.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2010/03/17/integrate-wordpress-functions-on-magento/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>WordPress plugin for mobile touch device &amp; how to take iPod, iPhone screenshots</title>
		<link>http://www.michelem.org/2010/02/03/wordpress-plugin-for-mobile-touch-device-how-to-take-ipod-iphone-screenshots/</link>
		<comments>http://www.michelem.org/2010/02/03/wordpress-plugin-for-mobile-touch-device-how-to-take-ipod-iphone-screenshots/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 08:44:59 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[screenshots]]></category>
		<category><![CDATA[templates]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[touch]]></category>
		<category><![CDATA[wptouch]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=938</guid>
		<description><![CDATA[Navigando casualmente il blog di Antonio Tombolini sull&#8217;iPod touch aziendale che usiamo per le prove e le verifiche delle nostre (vedi Simplicissimus Book Farm) applicazioni ho scoperto con grande meraviglia questo bellissimo e utilissimo plugin per WordPress che ormai tutti dovrebbero adottare nel proprio blog. Il plugin in questione e&#8217; WPTouch che permette di trasformare [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Navigando casualmente il <a href="http://antoniotombolini.simplicissimus.it/">blog di Antonio Tombolini</a> sull&#8217;iPod touch aziendale che usiamo per le prove e le verifiche delle nostre (vedi <a href="http://www.simplicissimus.it/">Simplicissimus Book Farm</a>) applicazioni ho scoperto con grande meraviglia questo bellissimo e utilissimo <a href="http://www.michelem.org/wordpress-plugins">plugin per WordPress</a> che ormai tutti dovrebbero adottare nel proprio blog.</p>
<p>Il plugin in questione e&#8217; <a href="http://www.bravenewcode.com/products/wptouch/"><strong>WPTouch</strong></a> che permette di trasformare il proprio blog in un esperienza usabile anche in condizioni &#8220;estreme&#8221; come la lettura da device con schermi ridotti e funzionalita&#8217; touch. Il plugin, pieno zeppo di opzioni e personalizzazioni varie, rende qualsiasi blog (non importa il tema che state usando) navigabile come fosse un&#8217;applicazione iPhone rendendolo stiloso e di grande effetto per coloro che usano questi device per leggerlo.</p>
<p>L&#8217;installazione e&#8217; come al solito semplicissima e come tutte le altre installazioni, non richiede particolari azioni se non quella di configurarlo tramite la propria pagina di amministrazione che si trova nelle impostazioni del proprio blog, sotto la voce WPTouh (strano eh?).</p>
<p>Se state usando altri plugin di caching come <a href="http://wordpress.org/extend/plugins/wp-super-cache/">WP Super Cache</a> o <a href="http://wordpress.org/extend/plugins/wp-cache/">WP Cache</a> attenzione perche&#8217; potreste avere problemi (il tema di WPTouch non viene abilitato quando navigate con device touch), io per risolvere questo problema e&#8217; bastato abilitare WPTouch e configurarlo, poi <strong>disabilitare</strong> la cache di WP Cache (tasto in alto &#8220;disable&#8221; nelle impostazioni di WP Cache) e semplicemente <strong>riabilitarla dopo averla ripulita</strong>.</p>
<p>Allego qualche screenshot di questo blog visto da un iPod touch perche&#8217; merita veramente, complimenti all&#8217;autore per questa piccola ma importantissima rivoluzione.</p>

<a href='http://www.michelem.org/2010/02/03/wordpress-plugin-for-mobile-touch-device-how-to-take-ipod-iphone-screenshots/photo/' title='L&#039;homepage dall&#039;iPhone/iPod'><img width="200" height="200" src="http://www.michelem.org/wp-content/uploads/2010/02/photo-200x200.jpg" class="attachment-thumbnail" alt="L&#039;homepage dall&#039;iPhone/iPod" title="L&#039;homepage dall&#039;iPhone/iPod" /></a>
<a href='http://www.michelem.org/2010/02/03/wordpress-plugin-for-mobile-touch-device-how-to-take-ipod-iphone-screenshots/photo-2/' title='Menu, tags e categorie'><img width="200" height="200" src="http://www.michelem.org/wp-content/uploads/2010/02/photo-2-200x200.jpg" class="attachment-thumbnail" alt="Menu, tags e categorie" title="Menu, tags e categorie" /></a>
<a href='http://www.michelem.org/2010/02/03/wordpress-plugin-for-mobile-touch-device-how-to-take-ipod-iphone-screenshots/photo-3/' title='Funzioni sociali'><img width="200" height="200" src="http://www.michelem.org/wp-content/uploads/2010/02/photo-3-200x200.jpg" class="attachment-thumbnail" alt="Funzioni sociali" title="Funzioni sociali" /></a>
<a href='http://www.michelem.org/2010/02/03/wordpress-plugin-for-mobile-touch-device-how-to-take-ipod-iphone-screenshots/photo-4/' title='Commenti dall&#039;iPhone/iPod'><img width="200" height="200" src="http://www.michelem.org/wp-content/uploads/2010/02/photo-4-200x200.jpg" class="attachment-thumbnail" alt="Commenti dall&#039;iPhone/iPod" title="Commenti dall&#039;iPhone/iPod" /></a>

<p>Quasi dimenticavo, per <strong><a href="http://www.michelem.org/2010/02/03/wordpress-plugin-for-mobile-touch-device-how-to-take-ipod-iphone-screenshots/">fare </a></strong><strong><a href="http://www.michelem.org/2010/02/03/wordpress-plugin-for-mobile-touch-device-how-to-take-ipod-iphone-screenshots/">uno screenshot del vostro iPod touch o iPhone</a></strong> non serve alcuna applicazione basta andare nella schermata che volete fotografare e mentre <strong>tenete premuto il tasto di spegnimento</strong> del device (quello in alto a sinistra su un iPod Touch) <strong>premete una volta l&#8217;altro unico tasto</strong> che esiste (si quello centrale in basso). Troverete gli screenshot del vostro device tra le foto.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2010/02/03/wordpress-plugin-for-mobile-touch-device-how-to-take-ipod-iphone-screenshots/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>bbPress database integration on WordPress</title>
		<link>http://www.michelem.org/2009/05/09/bbpress-database-integration-on-wordpress/</link>
		<comments>http://www.michelem.org/2009/05/09/bbpress-database-integration-on-wordpress/#comments</comments>
		<pubDate>Sat, 09 May 2009 11:27:41 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=901</guid>
		<description><![CDATA[Integrare i dati di un forum bbPress in WordPress e&#8217; estremamente semplice, soprattutto se il database e&#8217; lo stesso e cambia solo il prefix delle tabelle. Quindi se avete un blog WordPress con associato un forum bbPress bastera&#8217; creare delle corrette query nel template di WordPress per ottenere i dati del forum collegato. Per esempio, [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Integrare i dati di un <strong>forum <a href="http://bbpress.org/">bbPress</a></strong> in WordPress e&#8217; estremamente semplice, soprattutto se il <strong>database</strong> e&#8217; lo stesso e cambia solo il prefix delle tabelle. Quindi se avete un blog <strong>WordPress</strong> con associato un forum bbPress bastera&#8217; creare delle corrette <strong>query</strong> nel template di WordPress per ottenere i <strong>dati</strong> del forum collegato.</p>
<p><strong>Per esempio, per ottenere la lista dei forums disponibli potete usare qualcosa come questo:</strong></p>
<pre class="brush: php">
&lt;h2&gt;Support Forums&lt;/h2&gt;
&lt;ul&gt;
&lt;?php
$bb_forums = $wpdb-&gt;get_results(
&quot;SELECT * FROM bb_forums ORDER BY topics DESC&quot;
);

foreach ($bb_forums as $bb_forum) {

print &quot;&lt;li&gt;&lt;a href=\&quot;/&quot;.$bb_forum-&gt;slug.&quot;\&quot;
title=\&quot;&quot;.$bb_forum-&gt;forum_name.&quot;\&quot;&gt;
&quot;.$bb_forum-&gt;forum_name.&quot;
&lt;/a&gt;&quot;.$bb_forum-&gt;forum_desc.&quot;&lt;/li&gt;&quot;;

}
?&gt;
&lt;/ul&gt;
</pre>
<p><strong>Oppure per visualizzare la lista degli ultimi 5 topic aggiornati:</strong></p>
<pre class="brush: php">
&lt;h2&gt;Latest Forum&#039;s Topics&lt;/h2&gt;
&lt;ul&gt;
&lt;?php
$bb_topics = $wpdb-&gt;get_results(
&quot;SELECT * FROM bb_topics ORDER BY topic_start_time DESC LIMIT 5&quot;);
$bb_posts = array();

foreach($bb_topics as $bb_topic){

$bb_first_post = $wpdb-&gt;get_results(
&quot;SELECT post_text FROM bb_posts
WHERE post_position = &#039;1&#039;
AND topic_id = $bb_topic-&gt;topic_id&quot;, ARRAY_A);

$bb_post-&gt;post_date = $bb_topic-&gt;topic_start_time;
$bb_post-&gt;post_title = $bb_topic-&gt;topic_title;
$bb_post-&gt;post_name = &quot;forums/topic/&quot;.$bb_topic-&gt;topic_slug;
$bb_post-&gt;comment_count = $bb_topic-&gt;topic_posts;

print &quot;&lt;li&gt;&lt;a href=\&quot;/&quot;.$bb_post-&gt;post_name.&quot;\&quot;
title=\&quot;&quot;.$bb_post-&gt;post_title.&quot;\&quot;&gt;&quot;.$bb_post-&gt;post_title.&quot;&lt;/a&gt;
&lt;br /&gt;&lt;a href=\&quot;/&quot;.$bb_post-&gt;post_name.&quot;\&quot;
title=\&quot;&quot;.$bb_post-&gt;post_title.&quot;\&quot; &gt;
&quot;.$bb_post-&gt;comment_count.&quot; comments&lt;/a&gt;
- &quot;.$bb_post-&gt;post_date.&quot;&lt;/li&gt;&quot;;

};
?&gt;
&lt;/ul&gt;
</pre>
<p>Potete vedere un esempio pratico nel sito di WassUp, il <strong><a href="http://www.wpwp.org">plugin WordPress per le statistiche</a></strong> che sviluppo e mantengo da tempo.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2009/05/09/bbpress-database-integration-on-wordpress/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>WordPress: Dynamic Meta Description and Keywords howto</title>
		<link>http://www.michelem.org/2008/07/11/wordpress-dynamic-meta-description-and-keywords-howto/</link>
		<comments>http://www.michelem.org/2008/07/11/wordpress-dynamic-meta-description-and-keywords-howto/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 13:45:01 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[about michele]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[search engine]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=741</guid>
		<description><![CDATA[This is a quick guide to add dynamic meta description and keyword to each different url of our WordPress blog, very useful to SEO users. Open your header.php file from your theme directory and put this code into: Meta Content Description &#60;meta name="description" content=" &#60;?php if (have_posts() &#38;&#38; is_single() OR is_page()):while(have_posts()):the_post(); $out_excerpt = str_replace(array("\r\n", "\r", [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>This is a quick guide to <strong>add dynamic meta description and keyword to each different url of our <a href="http://www.michelem.org/tag/wordpress">WordPress</a> blog</strong>, very useful to <strong><a href="http://www.michelem.org/tag/seo/">SEO</a></strong> users.</p>
<p>Open your <strong>header.php</strong> file from your theme directory and put this code into:</p>
<p><strong>Meta Content Description</strong></p>
<blockquote>
<pre>&lt;meta name="description" content="
&lt;?php if (have_posts() &amp;&amp; is_single() OR is_page()):while(have_posts()):the_post();
$out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", get_the_excerpt());
echo apply_filters('the_excerpt_rss', $out_excerpt);
endwhile;
elseif(is_category() OR is_tag()):
if(is_category()):
echo "Posts related to Category:
".ucfirst(single_cat_title("", FALSE));
elseif(is_tag()):
echo "Posts related to Tag:
".ucfirst(single_tag_title("", FALSE));
endif;
else: ?&gt;
<strong>ADD HERE YOUR DEFAULT DESCRIPTION</strong>
&lt;?php endif; ?&gt;" /&gt;</pre>
</blockquote>
<p><strong>Meta Content Keywords</strong></p>
<blockquote>
<pre>&lt;meta name="keywords" content="
&lt;?php
$tags = get_tags(array('orderby' =&gt; 'count', 'order' =&gt; 'DESC'));
$xt = 1;
foreach ($tags as $tag) {
if ($xt &lt;= 20) {
echo $tag-&gt;name.", ";
}
$xt++;
}
?&gt;<strong>ADD, HERE, YOUR, STATIC, KEYWORDS</strong>" /&gt;</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2008/07/11/wordpress-dynamic-meta-description-and-keywords-howto/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>Changing&#8230;</title>
		<link>http://www.michelem.org/2008/04/07/changing/</link>
		<comments>http://www.michelem.org/2008/04/07/changing/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 10:00:55 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[about michele]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[michele]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=689</guid>
		<description><![CDATA[Per chi leggesse questo post solo tramite feed reader vi consiglio di dare un occhio anche via browser perche&#8217; qualcosa e&#8217; cambiato&#8230;]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p><a title="new michelem.org" href="http://www.flickr.com/photos/michelem/2394894453/"><img class="alignleft" style="float: left;" src="http://farm3.static.flickr.com/2236/2394894453_8d26175ce2_m.jpg" alt="" width="166" height="240" /></a>Per chi leggesse questo post solo tramite feed reader vi consiglio di <a href="http://www.michelem.org">dare un occhio anche via browser</a> perche&#8217; qualcosa e&#8217; cambiato&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2008/04/07/changing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress 2.5 my Plugins Compatibility</title>
		<link>http://www.michelem.org/2008/03/31/wordpress-25-my-plugins-compatibility/</link>
		<comments>http://www.michelem.org/2008/03/31/wordpress-25-my-plugins-compatibility/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 10:21:08 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[2.5]]></category>
		<category><![CDATA[compatibility]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=680</guid>
		<description><![CDATA[Giusto per rendervelo noto, questo e&#8217; l&#8217;attuale status dei miei plugin se usati nella nuova versione di WordPress 2.5: WassUp: funziona senza alcun problema e le novita&#8217; a breve saranno diverse (esce la versione 1.5&#8230;) NoFollow Free: funziona senza alcun problema Tags4Page: NON FUNZIONA con Worpress 2.5! Ci sto lavorando&#8230; TIL Technorati Incoming Links: funziona [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Giusto per rendervelo noto, questo e&#8217; l&#8217;attuale status dei miei plugin se usati nella nuova versione di <a href="http://wordpress.org/development/2008/03/wordpress-25-brecker/">WordPress 2.5</a>:</p>
<ul>
<li style="text-align: left;"><strong><a href="http://wpwp.org">WassUp</a></strong>: funziona senza alcun problema e le novita&#8217; a breve saranno diverse (esce la versione 1.5&#8230;)</li>
<li><strong><a href="http://www.michelem.org/wordpress-plugin-nofollow-free/">NoFollow Free</a></strong>: funziona senza alcun problema</li>
<li><strong><a href="http://www.michelem.org/wordpress-plugin-tags4page/">Tags4Page</a>: <span style="text-decoration: underline;">NON FUNZIONA</span> con Worpress 2.5! Ci sto lavorando&#8230;</strong></li>
<li><strong><a title="Worpress Plugin to reactivate the Technorati Incoming Links in the WordPress 2.3 dashboard" href="http://www.michelem.org/wordpress-plugin-til-technorati-incoming-links">TIL Technorati Incoming Links</a></strong>: funziona senza alcun problema</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2008/03/31/wordpress-25-my-plugins-compatibility/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>WordPress 2.5 Release Candidate</title>
		<link>http://www.michelem.org/2008/03/18/wordpress-25-release-candidate/</link>
		<comments>http://www.michelem.org/2008/03/18/wordpress-25-release-candidate/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 07:51:48 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[2.5]]></category>
		<category><![CDATA[candidate]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[version]]></category>

		<guid isPermaLink="false">http://www.michelem.org/2008/03/18/wordpress-25-release-candidate/</guid>
		<description><![CDATA[E finalmente eccola qua! L&#8217;attesissima nuova versione di WordPress 2.5 sta arrivando piano piano, dopo che la settimana scorsa fu posticipata, oggi esce l&#8217;attesissima release candidate e a breve, entro una settimana, la versione ufficiale e stabile. Il team di WordPresss viste le grandissime novita&#8217; di questa nuova versione, ha deciso di prendersi qualche giorno [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>E finalmente eccola qua! L&#8217;attesissima <a href="http://wordpress.org/development/2008/03/25-sneak-peek/">nuova versione di WordPress 2.5</a> sta arrivando piano piano, dopo che la settimana scorsa fu posticipata, oggi esce l&#8217;attesissima release candidate e a breve, entro una settimana, la versione ufficiale e stabile.</p>
<p>Il team di WordPresss viste le grandissime novita&#8217; di questa nuova versione, ha deciso di prendersi qualche giorno nei quali verificare e provare la nuova versione sulla nostra stessa pelle, concordo la scelta di far uscire prima questa &#8220;beta&#8221; per testare effettivamente le tantissime modifiche direttamenete &#8220;sul campo&#8221;.</p>
<p>Gli <a href="http://www.michelem.org/2008/02/15/wordpress-25-screenshots-preview/">screenshot di WordPress 2.5</a> li avevate gia&#8217; visti, vi avevo anche preannunciato alcune delle <a href="http://www.michelem.org/2008/02/20/wordpress-25-things-you-must-know/">nuove caratteristiche di questa versione</a>, ora non resta che scaricarla e installarla nel vostro blog per provare con mano quello che verra&#8217;.</p>
<h3><strong>Aggiornare il vostro blog con WordPress 2.5:</strong></h3>
<h3>Step 0: Backup Backup Backup!!!</h3>
<ul>
<li>Prima di tutto createvi il backup sia della directory del blog sia del database, se siete su Linux questi semplici comandi potranno esservi di aiuto:</li>
</ul>
<blockquote><p><code>cp -av wordpress_blog wordpress_blog_backup<br />
mysqldump -c --add-drop-table -Q -e wordpress_database -ppassword -uuser &gt; wordpress_database_backup.sql</code></p></blockquote>
<ul>
<li>Altrimenti fate riferimento all&#8217;esaustiva guida di <a href="http://codex.wordpress.org/WordPress_Backups">WordPress per il backup</a> del vostro blog</li>
</ul>
<ul>
<li> Disattivate TUTTI i plugin. Alcuni dei vostri plugin potrebbero non essere piu&#8217; compatibili con la nuova versione, meglio disattivarli tutti prima di aggiornare per poi riattivarli uno all avolta ins eguito. <a href="http://codex.wordpress.org/Plugins/Plugin_Compatibility/2.5">Plugin compatibili con Worpdress 2.5</a> &#8211; <a href="http://www.wpwp.org">WassUp</a> e&#8217; pienamente compatibile<a href="http://codex.wordpress.org/Plugins/Plugin_Compatibility/2.5"> </a></li>
</ul>
<h3>Step 1: Sostituire i file</h3>
<ul>
<li> Scaricate la <a href="http://wordpress.org/wordpress-2.5-RC1.zip">nuova versione di WordPress</a> ed estraete i file in una directory di appoggio.</li>
<li>Copiate tutti i nuovi file sopra quelli vecchi. Fate attenzione solo alla directory wp-content che e&#8217; quella contenente i plugin e i temi, potreste escluderla dalla copia per mantenere tutte le vostre impostazioni.</li>
</ul>
<h3>Step 2: Aggiornare il database</h3>
<ul>
<li>Collegatevi all&#8217;amministrazione del vostro blog e lanciate l&#8217;upgrade del database: http://www.example.com/wp-admin/</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2008/03/18/wordpress-25-release-candidate/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordPress 2.5 Things you must know</title>
		<link>http://www.michelem.org/2008/02/20/wordpress-25-things-you-must-know/</link>
		<comments>http://www.michelem.org/2008/02/20/wordpress-25-things-you-must-know/#comments</comments>
		<pubDate>Wed, 20 Feb 2008 14:46:26 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[2.5]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[prepare]]></category>
		<category><![CDATA[roadmap]]></category>
		<category><![CDATA[screenshots]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.michelem.org/2008/02/20/wordpress-25-things-you-must-know/</guid>
		<description><![CDATA[Parliamo ancora di WordPress 2.5 che verra&#8217; rilasciato il 10 Marzo 2008, se tutto va bene, e di cui vi ho gia&#8217; fatto vedere gli screenshots della nuova amministrazione. Ma a parte la rivoluzione dell&#8217;interfaccia di amministrazione quali saranno le altre peculiarita&#8217; di questa nuova versione? Inanzitutto la sicurezza e&#8217; stata aumentata ancora aggiungendo a [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Parliamo ancora di <strong><a href="http://codex.wordpress.org/Version_2.5">WordPress 2.5</a></strong> che verra&#8217; rilasciato il <strong>10 Marzo 2008</strong>, se tutto va bene, e di cui vi ho gia&#8217; fatto vedere gli <strong><a href="http://www.michelem.org/2008/02/15/wordpress-25-screenshots-preview/">screenshots</a></strong> della nuova amministrazione.<br />
Ma a parte la <strong>rivoluzione dell&#8217;interfaccia di amministrazione</strong> quali saranno le altre peculiarita&#8217; di questa nuova versione?</p>
<p>Inanzitutto la <strong>sicurezza</strong> e&#8217; stata aumentata ancora aggiungendo a tutte le query il &#8220;<strong><a href="http://codex.wordpress.org/WordPress_Coding_Standards">prepare</a></strong>&#8221; che permette di sanare le variabili coinvolte prima di inserirle nel database cosi&#8217; da evitare gli exploit di tipo <strong>SQL injection</strong>.</p>
<p>Nella configurazione &#8220;hardcoded&#8221;, ovvero nel file <strong>wp-config.php</strong>, sono state aggiunte un paio di variabili che vi descrivo brevemente:</p>
<ul>
<li><strong>SECRET_KEY: </strong>servira&#8217; a creare delle password molto piu&#8217; criptate</li>
<li><strong>WP_MEMORY_LIMIT: </strong>permettera&#8217; di aumentare la memoria php disponibile per il blog cosi&#8217; da evitare eventuali errori del tipo: &#8220;Allowed memory size of xxxxxx bytes exhausted&#8221;</li>
</ul>
<p>Un&#8217;altra caratteristica che in molti si stavano chiedendo da tempo sara&#8217; quella di <strong>cercare</strong> anche all&#8217;interno della <strong>pagine</strong> (prima era possibile eseguire ricerche solo per i post) e ancora, sara&#8217; possibile <strong>editare i commenti &#8220;al volo&#8221;</strong> e soprattutto fare un <strong>undo</strong> se si sbaglia ad inviarlo.</p>
<p>Cambiera&#8217; anche uno dei <strong>requisiti minimi</strong> per l&#8217;installazione e utilizzo di WordPress nel vostro server, ovvero <strong>PHP</strong> passera&#8217; alla versione minima <strong>4.3</strong> o maggiore.</p>
<p>E un&#8217;ultima cosa che forse non avevate notato dagli screenshots e&#8217; che la nuova dashboard sara&#8217; completamente basata su <strong>widget</strong>, questo vuole dire che la modificheremo come piu&#8217; ci piace con semplici click e drag &amp; drop.</p>
<p>Aspettiamo fiduciosi marzo e intanto potete dare un occhio alla <a href="http://trac.wordpress.org/milestone/2.5">roadmap</a> ufficiale.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2008/02/20/wordpress-25-things-you-must-know/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress 2.5 Screenshots Preview!</title>
		<link>http://www.michelem.org/2008/02/15/wordpress-25-screenshots-preview/</link>
		<comments>http://www.michelem.org/2008/02/15/wordpress-25-screenshots-preview/#comments</comments>
		<pubDate>Fri, 15 Feb 2008 15:31:44 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[2.5]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[screenshots]]></category>

		<guid isPermaLink="false">http://www.michelem.org/2008/02/15/wordpress-25-screenshots-preview/</guid>
		<description><![CDATA[WordPress 2.5 is currently in development, scheduled for March, 2008 Here are some screenshots: Dashboard Create new post Edit post Users General settings Manage themes Import Manage Plugins Edit comments Posts]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p><a href="http://codex.wordpress.org/Version_2.5">WordPress 2.5</a> is currently in development, <a href="http://wordpress.org/about/roadmap/" title="http://wordpress.org/about/roadmap/">scheduled for</a> March, 2008</p>
<p>Here are some screenshots:</p>
<p><a href="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_dashboard_wordpress.png" title="Wordpress 2.5 Preview - Dashboard" rel="lightbox"><img src="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_dashboard_wordpress.thumbnail.png" alt="Wordpress 2.5 Preview - Dashboard" /></a> Dashboard<span id="more-657"></span></p>
<p><a href="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_create_new_post_wordpress.png" title="Wordpress 2.5 Preview - Create New post" rel="lightbox"><img src="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_create_new_post_wordpress.thumbnail.png" alt="Wordpress 2.5 Preview - Create New post" /></a> Create new post</p>
<p><a href="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_edit_wordpress.png" title="Wordpress 2.5 Preview - Edit Post" rel="lightbox"><img src="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_edit_wordpress.thumbnail.png" alt="Wordpress 2.5 Preview - Edit Post" /></a> Edit post</p>
<p><a href="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_users_wordpress.png" title="Wordpress 2.5 Preview - Users" rel="lightbox"><img src="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_users_wordpress.thumbnail.png" alt="Wordpress 2.5 Preview - Users" /></a> Users</p>
<p><a href="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_general_settings_wordpress.png" title="Wordpress 2.5 Preview - General Settings" rel="lightbox"><img src="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_general_settings_wordpress.thumbnail.png" alt="Wordpress 2.5 Preview - General Settings" /></a> General settings</p>
<p><a href="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_manage_themes_wordpress.png" title="Wordpress 2.5 Preview - Manage Themes" rel="lightbox"><img src="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_manage_themes_wordpress.thumbnail.png" alt="Wordpress 2.5 Preview - Manage Themes" /></a> Manage themes</p>
<p><a href="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_import_wordpress.png" title="Wordpress 2.5 Preview - Import" rel="lightbox"><img src="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_import_wordpress.thumbnail.png" alt="Wordpress 2.5 Preview - Import" /></a> Import</p>
<p><a href="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_manage_plugins_wordpress.png" title="Wordpress 2.5 Preview - Manage Plugins" rel="lightbox"><img src="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_manage_plugins_wordpress.thumbnail.png" alt="Wordpress 2.5 Preview - Manage Plugins" /></a> Manage Plugins</p>
<p><a href="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_edit_comments_wordpress.png" title="Wordpress 2.5 Preview - Edit Comments" rel="lightbox"><img src="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_edit_comments_wordpress.thumbnail.png" alt="Wordpress 2.5 Preview - Edit Comments" /></a> Edit comments</p>
<p><a href="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_posts_wordpress.png" title="Wordpress 2.5 Preview - Posts" rel="lightbox"><img src="http://www.michelem.org/wp-content/uploads/2008/02/wordpress_25_preview_posts_wordpress.thumbnail.png" alt="Wordpress 2.5 Preview - Posts" /></a> Posts</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2008/02/15/wordpress-25-screenshots-preview/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>WordPress Query based on Custom Field and Category</title>
		<link>http://www.michelem.org/2008/01/23/wordpress-query-based-on-custom-field-and-category/</link>
		<comments>http://www.michelem.org/2008/01/23/wordpress-query-based-on-custom-field-and-category/#comments</comments>
		<pubDate>Wed, 23 Jan 2008 13:10:59 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.michelem.org/2008/01/23/wordpress-query-based-on-custom-field-and-category/</guid>
		<description><![CDATA[Il bello di WordPress e&#8217; che puoi farci di tutto e se il loop di default che ti propone non ti sta bene e vuoi loopare su query personalizzate da te, puoi. Per esempio potreste volere che la query principale riporti solo determinati post basati su specifiche categorie, tags o quello che vi pare, e [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Il bello di <a href="http://www.wordpress.org">WordPress</a> e&#8217; che puoi farci di tutto e se il loop di default che ti propone non ti sta bene e vuoi loopare su query personalizzate da te, puoi.</p>
<p>Per esempio potreste volere che la query principale riporti solo determinati post basati su specifiche categorie, tags o quello che vi pare, e allora dovrete crearvi voi la query, ma anche per questo c&#8217;e&#8217; qualcuno che ci ha gia&#8217; pensato togliendovi diverso lavoro.</p>
<p>Con la seguente query, per esempio, riuscirete a estrapolare dal database di WordPress tutti i post contenuti nelle categorie 1,2 e 3, che hanno la meta_key &#8220;paragraf&#8221;, e ordinate per meta_value ascendente:</p>
<blockquote><p><code>querystr = "<br />
SELECT $wpdb-&gt;posts.*<br />
FROM $wpdb-&gt;posts<br />
LEFT JOIN $wpdb-&gt;postmeta ON ($wpdb-&gt;posts.ID = $wpdb-&gt;postmeta.post_id)<br />
LEFT JOIN $wpdb-&gt;post2cat ON ($wpdb-&gt;posts.ID = $wpdb-&gt;post2cat.post_id)<br />
WHERE $wpdb-&gt;postmeta.meta_key = 'paragraf'<br />
AND $wpdb-&gt;posts.post_status = 'publish'<br />
AND $wpdb-&gt;posts.post_type = 'post'<br />
AND $wpdb-&gt;post2cat.category_id IN (1,2,3)<br />
ORDER BY $wpdb-&gt;postmeta.meta_value ASC<br />
";</code></p></blockquote>
<p>Ora bastera&#8217; seguire il resto del <a href="http://codex.wordpress.org/Displaying_Posts_Using_a_Custom_Select_Query">tutorial</a> per capire come visualizzare i risultati della vostra custom query.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2008/01/23/wordpress-query-based-on-custom-field-and-category/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Object Caching 1766/2016 objects using disk: basic

Served from: www.michelem.org @ 2012-02-10 13:02:57 -->
