<?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>Planeta WordPress &#187; HTML</title>
	<atom:link href="http://planetawordpress.org/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://planetawordpress.org</link>
	<description></description>
	<lastBuildDate>Thu, 29 Jul 2010 23:43:47 +0000</lastBuildDate>
	<generator>http://weblog.mx/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Tutorial: crear una barra con los datos del autor</title>
		<link>http://feedproxy.google.com/~r/AyudaWordpress/~3/sGtV7dM3RvY/</link>
		<comments>http://feedproxy.google.com/~r/AyudaWordpress/~3/sGtV7dM3RvY/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 22:45:59 +0000</pubDate>
		<dc:creator>planetawordpress</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Experto]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programación]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tutoriales / Trucos]]></category>
		<category><![CDATA[Wordpress.org]]></category>

		<guid isPermaLink="false">http://ayudawordpress.com/?p=8228</guid>
		<description><![CDATA[
Si nuestro blog es unipersonal, es probable que no nos interese el siguiente tutorial. Pero si tenemos un en blog multipersonal, ya sea con una cantidad determinada de colaboradores  o abierto todo aquel que quiera colaborar (como éste), puede ser una buena idea mostrar de forma dinámica los datos del autor de la entrada actualizados [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center"><a rel="attachment wp-att-8240" href="http://ayudawordpress.com/tutorial-crear-una-barra-con-los-datos-del-autor/hdm4_0001/"><img class="alignnone size-full wp-image-8240" src="http://ayudawordpress.com/wp-content/uploads/2010/07/HDM4_0001.jpg" alt="" width="361" height="271" /></a></p>
<p>Si nuestro blog es unipersonal, es probable que no nos interese el siguiente tutorial. Pero si tenemos un en blog multipersonal, ya sea con una cantidad determinada de colaboradores  o abierto todo aquel que quiera colaborar (como éste), puede ser una buena idea mostrar de forma dinámica los datos del autor de la entrada actualizados al día.</p>
<p>Seguramente existe más de un plugin para realizar esto o algo por el estilo, pero como soy un fanático del hágalo usted mismo les voy a mostrar cómo hacerlo por código utilizando las mismas funciones de Wordpress.<span id="more-8228"></span></p>
<p>Cabe aclarar que más allá del código php y html, seguramente cada uno necesitará adaptar un poco los estilos css a su theme. De todas formas sobre utilizar el theme por defecto de wordpress 2.9.2. La idea por supuesto es que tengan alguna idea de html, php y css, pero sino copiar y pegar el código final también vale. Comencemos entonces con el código:</p>
<p>Creemos primero el div que va a contener todo:</p>
<div class="igBar"><span id="lhtml-25"><a href="http://feedproxy.google.com/~r/AyudaWordpress/~3/sGtV7dM3RvY/#" onclick="javascript:showCodeTxt('html-25'); return false;">Clic para ver Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">HTML:</span>
<div id="html-25">
<div class="html">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #808080; font-style: italic;">&lt;!--div contenedor --&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/div.html"><span style="color: #000000; font-weight: bold;">&lt;div</span></a> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">"author-data"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/div&gt;</span></span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Vamos a comenzar mostrando el gravatar del autor. Para eso vamos a utilizar la función "get_avatar()" que recibe el id del usuario y el ancho en pixeles del avatar, y retorna el código html listo para insertar. A su vez para obtener el id del autor usaremos la función "get_the_author_meta()" que nos servirá para obtener casi cualquier información acerca del mismo, recibe como parámetro el dato a recuperar. Una vez obtenido el código lo imprimimos:</p>
<div class="igBar"><span id="lphp-26"><a href="http://feedproxy.google.com/~r/AyudaWordpress/~3/sGtV7dM3RvY/#" onclick="javascript:showCodeTxt('php-26'); return false;">Clic para ver Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-26">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> get_avatar<span style="color:#006600; font-weight:bold;">&#40;</span>get_the_author_meta<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'ID'</span><span style="color:#006600; font-weight:bold;">&#41;</span>,<span style="color:#CC66CC;color:#800000;">80</span><span style="color:#006600; font-weight:bold;">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Ahora lo segundo seria agregar un título con un enlace al sitio web del autor, para eso utilizaremos la función "the_author_link()" que imprime el nombre publico del autor como link a su sitio.</p>
<div class="igBar"><span id="lhtml-27"><a href="http://feedproxy.google.com/~r/AyudaWordpress/~3/sGtV7dM3RvY/#" onclick="javascript:showCodeTxt('html-27'); return false;">Clic para ver Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">HTML:</span>
<div id="html-27">
<div class="html">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/h4.html"><span style="color: #000000; font-weight: bold;">&lt;h4&gt;</span></a></span>Acerca de <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;</span></a>?php the_author_link<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>; ?<span style="color: #000000; font-weight: bold;">&gt;</span></a></span>:<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/h4&gt;</span></span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Si pensamos en el SEO y preferimos que el enlace sea nofollow (o sea que los bots como el de Google no lo considere). Podriamos hacer lo siguiente:</p>
<div class="igBar"><span id="lphp-28"><a href="http://feedproxy.google.com/~r/AyudaWordpress/~3/sGtV7dM3RvY/#" onclick="javascript:showCodeTxt('php-28'); return false;">Clic para ver Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-28">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;h4&gt;Acerca de &lt;a rel=<span style="color:#FF0000;">"nofollow"</span> title=<span style="color:#FF0000;">"web del autor"</span> href=<span style="color:#FF0000;">"&lt;?php the_author_meta('user_url'); ?&gt;;"</span> <span style="color:#000000; font-weight:bold;">&lt;?php</span> the_author<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>; ?&gt;&lt;/a&gt;/h4&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Como verán usamos la función "the_author()" que imprime el nombre publico del author y la función "the_author_meta()" para obtener el link de su web.</p>
<p>Ahora utilicemos nuevamente la función "the_author_meta()" pero para obtener su descripción:</p>
<div class="igBar"><span id="lphp-29"><a href="http://feedproxy.google.com/~r/AyudaWordpress/~3/sGtV7dM3RvY/#" onclick="javascript:showCodeTxt('php-29'); return false;">Clic para ver Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-29">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p&gt;&lt;?php the_author_meta<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'user_description'</span><span style="color:#006600; font-weight:bold;">&#41;</span>; <span style="color:#000000; font-weight:bold;">?&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/p&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Si por cuestiones de diseño quisiéramos recortarla a no mas de una x cantidad de caracteres podemos usar la función "substr()" de php. Recibe la cadena a recortar, el punto de inicio y la cantidad de caracteres. Para recuperar la descripción usamos "get_the_author_meta()", como ya habrán deducido, cuando lo usamos con get_ adelante recuperamos el valor y cuando lo usamos sin el, directamente lo imprimimos. Por ejemplo si quisiéramos recortar la descripción a 140 caracteres:</p>
<div class="igBar"><span id="lphp-30"><a href="http://feedproxy.google.com/~r/AyudaWordpress/~3/sGtV7dM3RvY/#" onclick="javascript:showCodeTxt('php-30'); return false;">Clic para ver Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-30">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">&lt;?php</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9933; font-style:italic;">//Con esto imprimimos los primeros 140 caracteres (a lo twitter) de la descripción</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> <a href="http://www.php.net/substr"><span style="color:#000066;">substr</span></a><span style="color:#006600; font-weight:bold;">&#40;</span> get_the_author_meta<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'user_description'</span><span style="color:#006600; font-weight:bold;">&#41;</span> , <span style="color:#CC66CC;color:#800000;">0</span> , <span style="color:#CC66CC;color:#800000;">140</span> <span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">?&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/p&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Ahora la idea va a ser mostrar la cantidad de post del autor (una pavada que hacemos con la función "the_author_posts()") pero que a su vez funcione como un link a la pagina con los post del author. Esta página en un blog con permalinks "bonitos" tendría la siguiente forma tu-dominio.com/author/el-autor/. Pero como dependiendo de la configuración, esto puede cambiar, vamos a obtener primero el link a la página con los posts del autor.</p>
<p>Para nuestra tarea vamos a hacer uso de la función "get_author_posts_url()" que recibe el id del autor y devuelve el link que mostramos. Para obtener el id, volvemos a usar la función "get_the_author_meta()":</p>
<div class="igBar"><span id="lphp-31"><a href="http://feedproxy.google.com/~r/AyudaWordpress/~3/sGtV7dM3RvY/#" onclick="javascript:showCodeTxt('php-31'); return false;">Clic para ver Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-31">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">get_author_posts_url<span style="color:#006600; font-weight:bold;">&#40;</span>get_the_author_meta<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'ID'</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Ya el link armado para mostrar todo lo que queríamos queda así:</p>
<div class="igBar"><span id="lphp-32"><a href="http://feedproxy.google.com/~r/AyudaWordpress/~3/sGtV7dM3RvY/#" onclick="javascript:showCodeTxt('php-32'); return false;">Clic para ver Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-32">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Ha publicado &lt;a title=<span style="color:#FF0000;">"otros posts del autor"</span> href=<span style="color:#FF0000;">"&lt;?php echo get_author_posts_url(get_the_author_meta('ID')); ?&gt;"</span> &lt;&lt;?php the_author_posts<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#000000; font-weight:bold;">?&gt;</span> posts &lt;/a&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/p&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Para finalizar los datos a mostrar nos queda un detalle mas, los comentarios realizados por el autor. Dado que no existe (o más bien, yo no conozco) una función para obtener directamente la cantidad de comentarios de un autor, vamos a crear una, basándonos en el sql que Fernando me facilito tan amablemente hace un tiempo,que a su vez esta basado en el del plugin wordpress-plugin-nofollow-free:</p>
<div class="igBar"><span id="lphp-33"><a href="http://feedproxy.google.com/~r/AyudaWordpress/~3/sGtV7dM3RvY/#" onclick="javascript:showCodeTxt('php-33'); return false;">Clic para ver Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-33">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9933; font-style:italic;">//La idea es que esta función reciba el id del autor y devuelva la cantidad de comentarios que realizó.</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">function</span> get_the_author_comments<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$author_id</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#008000;">/*Obtenemos algunos datos del autor que vamos a necesitar*/</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$nick</span> = get_the_author_meta<span style="color:#006600; font-weight:bold;">&#40;</span> <span style="color:#FF0000;">'nickname'</span> , <span style="color:#0000FF;">$author_id</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$username</span> = get_the_author_meta<span style="color:#006600; font-weight:bold;">&#40;</span> <span style="color:#FF0000;">'user_login'</span> , <span style="color:#0000FF;">$author_id</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$displayname</span> = get_the_author_meta<span style="color:#006600; font-weight:bold;">&#40;</span> <span style="color:#FF0000;">'display_name'</span> , <span style="color:#0000FF;">$author_id</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$email</span> = get_the_author_meta<span style="color:#006600; font-weight:bold;">&#40;</span> <span style="color:#FF0000;">'user_email'</span> , <span style="color:#0000FF;">$author_id</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#008000;">/*Usamos el objeto global $wpdb (algo así como una interfaz de wp para acceder a la base de datos)*/</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><a href="http://www.php.net/global"><span style="color:#000066;">global</span></a> <span style="color:#0000FF;">$wpdb</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#008000;">/*</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#008000;">Armamos un sql para que cuente la cantidad de registros (o sea comentarios) cuando</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#008000;">el id de usuario sea igual que el del autor, o cuando su email coincida con el campo comment_author_email o cuando su nombre de usuario o su nombre publico o su nickname coincidan con el campo comment_author.</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#008000;">*/</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$sql</span> = <span style="color:#FF0000;">"SELECT COUNT(*) AS contador FROM "</span> . <span style="color:#0000FF;">$wpdb</span>-&amp;gt;comments . <span style="color:#FF0000;">" WHERE "</span> .</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">" user_id = $author_id "</span> .</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">" or comment_author_email = '$email' "</span> .</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">" or comment_author IN ('"</span> . <span style="color:#0000FF;">$displayname</span> . <span style="color:#FF0000;">"','"</span> . <span style="color:#0000FF;">$username</span> . <span style="color:#FF0000;">"','"</span> . <span style="color:#0000FF;">$nick</span> . <span style="color:#FF0000;">"')"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9933; font-style:italic;">//retornamos el resultado</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#616100;">return</span>&nbsp; <span style="color:#0000FF;">$wpdb</span>-&amp;gt;get_var<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$sql</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Debido al hecho de que si los comentarios del blog son abiertos al que quiera comentar, nos vamos a encontrar con un mismo usuario que comenta con 2 email y nombres distintos o 2 usuarios que comentan con el mismo nombre; el resultado de la función no siempre va a ser exacto. Pero dentro de todo funciona bastante bien.</p>
<p>Ahora vamos a insertarla en el archivo functions.php de nuestro theme para poder utilizarla. En nuestro código vamos a utilizarla así (insertándola en el mismo párrafo que la de los posts del autor):</p>
<div class="igBar"><span id="lphp-34"><a href="http://feedproxy.google.com/~r/AyudaWordpress/~3/sGtV7dM3RvY/#" onclick="javascript:showCodeTxt('php-34'); return false;">Clic para ver Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-34">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Ha publicado &lt;a title=<span style="color:#FF0000;">"otros posts del autor"</span> href=<span style="color:#FF0000;">"&lt;?php echo get_author_posts_url(get_the_author_meta('ID')); ?&gt;"</span>&amp;gt; &amp;lt;?php the_author_posts<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> ?&amp;gt; posts &amp;lt;/a&amp;gt; | Ha realizado <span style="color:#000000; font-weight:bold;">&lt;?php</span> <a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> get_the_author_comments<span style="color:#006600; font-weight:bold;">&#40;</span>get_the_author_meta<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'ID'</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#41;</span>; <span style="color:#000000; font-weight:bold;">?&gt;</span> comentarios</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/p&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Todo nuestro código insertado dentro del div contenedor y puesto en forma de función por una cuestión de practicidad queda así:</p>
<div class="igBar"><span id="lphp-35"><a href="http://feedproxy.google.com/~r/AyudaWordpress/~3/sGtV7dM3RvY/#" onclick="javascript:showCodeTxt('php-35'); return false;">Clic para ver Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-35">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;!--div contenedor --&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;div&gt;&lt;?php</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9933; font-style:italic;">//le pongo show_author_data por ponerle un nombre</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">function</span> show_author_data<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#123;</span> <span style="color:#000000; font-weight:bold;">?&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;!--div contenedor --&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;div&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">&lt;?php</span> <a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> get_avatar<span style="color:#006600; font-weight:bold;">&#40;</span>get_the_author_meta<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'ID'</span><span style="color:#006600; font-weight:bold;">&#41;</span>,<span style="color:#CC66CC;color:#800000;">80</span><span style="color:#006600; font-weight:bold;">&#41;</span>; <span style="color:#000000; font-weight:bold;">?&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;h4&gt;Acerca de &lt;a rel=<span style="color:#FF0000;">"nofollow"</span> title=<span style="color:#FF0000;">"web del autor"</span> href=<span style="color:#FF0000;">"&lt;?php the_author_meta('user_url'); ?&gt;"</span>&gt;&lt;?php the_author<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>; ?&gt;&lt;/a&gt;&lt;/h4&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">&lt;?php</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9933; font-style:italic;">//Con esto imprimimos los primeros 140 caracteres (a lo twitter) de la descripción</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> <a href="http://www.php.net/substr"><span style="color:#000066;">substr</span></a><span style="color:#006600; font-weight:bold;">&#40;</span> get_the_author_meta<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'user_description'</span><span style="color:#006600; font-weight:bold;">&#41;</span> , <span style="color:#CC66CC;color:#800000;">0</span> , <span style="color:#CC66CC;color:#800000;">140</span> <span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">?&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/p&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Ha publicado &lt;a title=<span style="color:#FF0000;">"otros posts del autor"</span> href=<span style="color:#FF0000;">"&lt;?php echo get_author_posts_url(get_the_author_meta('ID')); ?&gt;"</span>&gt; <span style="color:#000000; font-weight:bold;">&lt;?php</span> the_author_posts<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#000000; font-weight:bold;">?&gt;</span> posts &lt;/a&gt; | Ha realizado <span style="color:#000000; font-weight:bold;">&lt;?php</span> <a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> get_the_author_comments<span style="color:#006600; font-weight:bold;">&#40;</span>get_the_author_meta<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'ID'</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#41;</span>; <span style="color:#000000; font-weight:bold;">?&gt;</span> comentarios</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/p&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/div&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">&lt;?php</span> <span style="color:#006600; font-weight:bold;">&#125;</span> <span style="color:#000000; font-weight:bold;">?&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/div&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Si al colocar ambas funciones en su archivo functions.php empiezan a saltarles errores diciendo que las cabeceras no se han podido enviar, lo mas probable es que hayan dejado saltos de línea o espacios por fuera de las etiquetas de php.</p>
<p>Por último vamos a agregar a la hoja de estilos de nuestro theme algunos retoques para embellecer nuestra barrita (por lo menos para que en Kubrick se vea bien):</p>
<div class="igBar"><span id="lcss-36"><a href="http://feedproxy.google.com/~r/AyudaWordpress/~3/sGtV7dM3RvY/#" onclick="javascript:showCodeTxt('css-36'); return false;">Clic para ver Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">CSS:</span>
<div id="css-36">
<div class="css">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #cc00cc;">#author-data <span style="color: #66cc66;">&#123;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">color</span>: #000000; <span style="color: #808080; font-style: italic;">/* o sea negro */</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">font-size</span>: 14px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">background</span>: #cccccc;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">width</span>: <span style="color: #cc66cc;color:#800000;">100</span>%;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">margin</span>: 10px 0px;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">padding</span>: 3px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">float</span>: <span style="color: #000000; font-weight: bold;">left</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080; font-style: italic;">/*si ponen lo siguiente su css no va a validar */</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">border-radius: 5px; <span style="color: #808080; font-style: italic;">/*para opera*/</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">moz-border-radius: 5px; <span style="color: #808080; font-style: italic;">/*para firefox */</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">webkit-border-radius: 5px; <span style="color: #808080; font-style: italic;">/*para safari y chrome*/</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">khtml-border-radius: 5px; <span style="color: #808080; font-style: italic;">/* para konkeror */</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">box-shadow: 2px 2px 5px #000000; <span style="color: #808080; font-style: italic;">/*para opera*/</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">-moz-box-shadow: 2px 2px 5px #000000;<span style="color: #808080; font-style: italic;">/*para firefox*/</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">-webkit-box-shadow: 2px 2px 5px #000000;<span style="color: #808080; font-style: italic;">/*para safari y chrome*/</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">-khtml-box-shadow: 2px 2px 5px #000000;<span style="color: #808080; font-style: italic;">/*para konkeror*/</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">#author-data <span style="color: #6666ff;">.avatar </span><span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">margin</span>: 4px;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">float</span>: <span style="color: #000000; font-weight: bold;">left</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">#author-data h4 <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">font-size</span>: 17px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">margin</span>: 3px;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">#author-data p <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">margin</span>: 0px;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">padding</span>: 4px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>En lo personal inserte la barrita arriba del título (llamando a la función show_author_data), pero cada uno colóquela donde quiera (siempre y cuando sea adentro del bucle).</p>
<p>Mi barrita en Kubrick se ve así (no se ve el gravatar porque al momento de tomar la captura me encuentro offline):</p>
<p style="text-align: center"><a rel="attachment wp-att-8229" href="http://ayudawordpress.com/tutorial-crear-una-barra-con-los-datos-del-autor/trabajo_terminado_en_kubrick/"><img class="alignnone size-medium wp-image-8229" src="http://ayudawordpress.com/wp-content/uploads/2010/07/trabajo_terminado_en_kubrick-500x439.png" alt="" width="500" height="439" /></a></p>
<p>Para que funcione en Twenty Ten (el tema por defecto en wp 3.0) hay que armar una estructura un poco más compleja en cuanto a divs y css:</p>
<div class="igBar"><span id="lphp-37"><a href="http://feedproxy.google.com/~r/AyudaWordpress/~3/sGtV7dM3RvY/#" onclick="javascript:showCodeTxt('php-37'); return false;">Clic para ver Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-37">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">function</span> show_author_data<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#123;</span> <span style="color:#000000; font-weight:bold;">?&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;!--div contenedor --&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;div&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;div&gt;&lt;?php <a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> get_avatar<span style="color:#006600; font-weight:bold;">&#40;</span>get_the_author_meta<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'ID'</span><span style="color:#006600; font-weight:bold;">&#41;</span>,<span style="color:#CC66CC;color:#800000;">80</span><span style="color:#006600; font-weight:bold;">&#41;</span>; ?&gt;&lt;/div&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;div&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;h4&gt;Acerca de &lt;a rel=<span style="color:#FF0000;">"nofollow"</span> title=<span style="color:#FF0000;">"web del autor"</span> href=<span style="color:#FF0000;">"&lt;?php the_author_meta('user_url'); ?&gt;"</span>&gt;&lt;?php the_author<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>; ?&gt;&lt;/a&gt;&lt;/h4&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">&lt;?php</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9933; font-style:italic;">//Con esto imprimimos los primeros 140 caracteres (a lo twitter) de la descripción</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> <a href="http://www.php.net/substr"><span style="color:#000066;">substr</span></a><span style="color:#006600; font-weight:bold;">&#40;</span> get_the_author_meta<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'user_description'</span><span style="color:#006600; font-weight:bold;">&#41;</span> , <span style="color:#CC66CC;color:#800000;">0</span> , <span style="color:#CC66CC;color:#800000;">140</span> <span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">?&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/p&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Ha publicado &lt;a title=<span style="color:#FF0000;">"otros posts del autor"</span> href=<span style="color:#FF0000;">"&lt;?php echo get_author_posts_url(get_the_author_meta('ID')); ?&gt;"</span>&gt; <span style="color:#000000; font-weight:bold;">&lt;?php</span> the_author_posts<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#000000; font-weight:bold;">?&gt;</span> posts &lt;/a&gt; | Ha realizado <span style="color:#000000; font-weight:bold;">&lt;?php</span> <a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> get_the_author_comments<span style="color:#006600; font-weight:bold;">&#40;</span>get_the_author_meta<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'ID'</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#41;</span>; <span style="color:#000000; font-weight:bold;">?&gt;</span> comentarios</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/p&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/div&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/div&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">&lt;?php</span> <span style="color:#006600; font-weight:bold;">&#125;</span> <span style="color:#000000; font-weight:bold;">?&gt;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Y los css:</p>
<div class="igBar"><span id="lcode-38"><a href="http://feedproxy.google.com/~r/AyudaWordpress/~3/sGtV7dM3RvY/#" onclick="javascript:showCodeTxt('code-38'); return false;">Clic para ver Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-38">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">#author-data <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">color: #000000; <span style="color:#008000;">/* o sea negro */</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">font-size: 14px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">background: #cccccc;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">margin: 10px <span style="color:#800000;color:#800000;">0</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">padding: 3px;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">float: left;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">clear: both;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">width: <span style="color:#800000;color:#800000;">100</span>%;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#008000;">/*si ponen lo siguiente su css no va a validar */</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">border-radius: 5px; <span style="color:#008000;">/*para opera*/</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">moz-border-radius: 5px; <span style="color:#008000;">/*para firefox */</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">webkit-border-radius: 5px; <span style="color:#008000;">/*para safari y chrome*/</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">khtml-border-radius: 5px; <span style="color:#008000;">/* para konkeror */</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">box-shadow: 2px 2px 5px #000000; <span style="color:#008000;">/*para opera*/</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">-moz-box-shadow: 2px 2px 5px #000000;<span style="color:#008000;">/*para firefox*/</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">-webkit-box-shadow: 2px 2px 5px #000000;<span style="color:#008000;">/*para safari y chrome*/</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">-khtml-box-shadow: 2px 2px 5px #000000;<span style="color:#008000;">/*para konkeror*/</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">#author-data #author-gravatar <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">margin: 4px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">float: left;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">margin: 4px -104px 4px 4px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">#author-data #author-info <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">float: left;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">margin: <span style="color:#800000;color:#800000;">0</span> <span style="color:#800000;color:#800000;">0</span> <span style="color:#800000;color:#800000;">0</span> 104px;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">#author-info h4 <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">font-size: 17px;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">margin: 2px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">padding: <span style="color:#800000;color:#800000;">0</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">#author-info p <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">margin: 2px;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">padding: 4px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>El resultado es el siguiente:</p>
<p style="text-align: center"><a rel="attachment wp-att-8233" href="http://ayudawordpress.com/tutorial-crear-una-barra-con-los-datos-del-autor/trabajo_terminado_en_twenty_ten-2/"><img class="alignnone size-medium wp-image-8233" src="http://ayudawordpress.com/wp-content/uploads/2010/07/trabajo_terminado_en_twenty_ten1-500x341.png" alt="" width="500" height="341" /></a></p>
<h2>Palabras Finales</h2>
<p>Espero que algún valiente haya llegado hasta acá. La idea del tutorial no era tanto hacer la barrita en si, sino colaborar a que de a poco muchos empiecen a perderle el miedo al código y no sean tan plugin dependientes.</p>
<p>Además tenía tiempo queriendo colaborar con algún post para esta bodega de conocimiento que es AyudaWordpress. Espero les sea útil.</p>
<p>PD: para el que no entendió un pomo pero igual quiere la barrita <a href="http://www.mediafire.com/file/mmutjkknmby/show-author-data.rar" >acá la tiene en forma de plugin</a>(eso si, en versión súper minimalista, no esperen panel de control, opciones, ni nada por el estilo).</p>
<!-- PHP 4.x --><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AyudaWordpress?a=sGtV7dM3RvY:JOrHjCq2rqY:Dsqc8YHEA1Y"><img src="http://feeds.feedburner.com/~ff/AyudaWordpress?i=sGtV7dM3RvY:JOrHjCq2rqY:Dsqc8YHEA1Y" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AyudaWordpress/~4/sGtV7dM3RvY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/AyudaWordpress/~3/sGtV7dM3RvY/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress en HTML5</title>
		<link>http://feedproxy.google.com/~r/AyudaWordpress/~3/Tq5iEuVMCec/</link>
		<comments>http://feedproxy.google.com/~r/AyudaWordpress/~3/Tq5iEuVMCec/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 16:07:30 +0000</pubDate>
		<dc:creator>planetawordpress</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[bitácoras]]></category>
		<category><![CDATA[Comunidad]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Opinión]]></category>
		<category><![CDATA[programación]]></category>
		<category><![CDATA[Wordpress.org]]></category>

		<guid isPermaLink="false">http://ayudawordpress.com/?p=7974</guid>
		<description><![CDATA[
Pues si, eso es nada más y nada menos en lo que se quiere meter Enric Enrich, en pasar todo el código de WordPress a HTML5. No le arriendo la ganancia, por supuesto y, sinceramente, no creo que llegue a hacerlo, además de que si se termina de animar lo que le recomiendo es que [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://ayudawordpress.com/wp-content/uploads/2010/06/html5.png" alt="" title="html5" width="417" height="294" class="aligncenter size-full wp-image-7975" /></p>
<p>Pues si, eso es nada más y nada menos <a href="http://enricenrich.com/2010/05/nuevo-proyecto-en-mente-wordpress-in-html5/">en lo que se quiere meter Enric Enrich</a>, en pasar todo el código de <strong>WordPress a HTML5</strong>. No le arriendo la ganancia, por supuesto y, sinceramente, no creo que llegue a hacerlo, además de que si se termina de animar lo que le recomiendo es que se una al equipo de desarrollo y se deje arropar del resto de desarrolladores.</p>
<p>Porque la idea es buena, lo que no lo es tanto es abordarla como un concepto personal ¿por qué?, pues porque <strong>WordPress no es un proyecto personal, es de la comunidad</strong>. Otra cosa es que haga un tema en HTML5, como ya hizo con <a href="http://enricenrich.com/2010/05/presentando-twentyfive-mi-primer-theme/">TwentyFive</a>, pero plantarse como objetivo "personal" <strong>pasar WordPress a HTML5</strong> me parece, no una locura, una insensatez, y que me perdone por ser tan sincero.</p>
<p>Así que, Enric, mi consejo es que te lo pienses bien, y concentres tus esfuerzos en - una de dos - unirte al equipo de desarrollo de WordPress, colaborando con el código, o en desarrollar <strong>temas en HTML5</strong>, que todos agradeceremos. Pero vamos, que es mi opinión, que no quiero desanimarte, solo que lo veo desde otro prisma.</p>
<p>Por cierto, Enric, si lees esto, a ver si pones un feed a tu blog, que ni Google Reader te lo reconoce  y no hay manera de seguirte salvo en bitácoras.com <img src='http://ayudawordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
<h3><font color="#000080">Contenido exclusivo para suscriptores al Feed</font></h3>
<p><font color="#808080">¡Gracias por seguirnos a diario!. Premiamos tu fidelidad ofreciéndote habitualmente contenidos exclusivos. Hoy puedes descargar:</font></p>
<p><a href="http://ayudawordpress.com/?dl_id=68" title="Clic aquí para iniciar la descarga"><img src="http://ayudawordpress.com/wp-content/uploads/2008/01/wp-install.jpg" alt="Clic aquí para iniciar la descarga" align="middle" border="0" height="59" width="43" /> Guía Windows Live Writer</a></p>



¿Te gustó este post? ¡Compártelo!


	<a rel="nofollow"  href="http://bitacoras.com/anotaciones/http%3A%2F%2Fayudawordpress.com%2Fwordpress-en-html5%2F" title="Bitacoras.com"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/bitacoras.png" title="Bitacoras.com" alt="Bitacoras.com" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=http%3A%2F%2Fayudawordpress.com%2Fwordpress-en-html5%2F" title="TwitThis"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fayudawordpress.com%2Fwordpress-en-html5%2F&amp;t=WordPress%20en%20HTML5" title="Facebook"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://meneame.net/submit.php?url=http%3A%2F%2Fayudawordpress.com%2Fwordpress-en-html5%2F" title="Meneame"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/meneame.png" title="Meneame" alt="Meneame" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fayudawordpress.com%2Fwordpress-en-html5%2F&amp;title=WordPress%20en%20HTML5&amp;annotation=%0D%0A%0D%0APues%20si%2C%20eso%20es%20nada%20m%C3%A1s%20y%20nada%20menos%20en%20lo%20que%20se%20quiere%20meter%20Enric%20Enrich%2C%20en%20pasar%20todo%20el%20c%C3%B3digo%20de%20WordPress%20a%20HTML5.%20No%20le%20arriendo%20la%20ganancia%2C%20por%20supuesto%20y%2C%20sinceramente%2C%20no%20creo%20que%20llegue%20a%20hacerlo%2C%20adem%C3%A1s%20de%20que%20si%20se%20termina%20de%20" title="Google Bookmarks"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fayudawordpress.com%2Fwordpress-en-html5%2F&amp;title=WordPress%20en%20HTML5&amp;notes=%0D%0A%0D%0APues%20si%2C%20eso%20es%20nada%20m%C3%A1s%20y%20nada%20menos%20en%20lo%20que%20se%20quiere%20meter%20Enric%20Enrich%2C%20en%20pasar%20todo%20el%20c%C3%B3digo%20de%20WordPress%20a%20HTML5.%20No%20le%20arriendo%20la%20ganancia%2C%20por%20supuesto%20y%2C%20sinceramente%2C%20no%20creo%20que%20llegue%20a%20hacerlo%2C%20adem%C3%A1s%20de%20que%20si%20se%20termina%20de%20" title="del.icio.us"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fayudawordpress.com%2Fwordpress-en-html5%2F&amp;title=WordPress%20en%20HTML5" title="Live"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fayudawordpress.com%2Fwordpress-en-html5%2F" title="Technorati"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fayudawordpress.com%2Fwordpress-en-html5%2F&amp;title=WordPress%20en%20HTML5&amp;body=%0D%0A%0D%0APues%20si%2C%20eso%20es%20nada%20m%C3%A1s%20y%20nada%20menos%20en%20lo%20que%20se%20quiere%20meter%20Enric%20Enrich%2C%20en%20pasar%20todo%20el%20c%C3%B3digo%20de%20WordPress%20a%20HTML5.%20No%20le%20arriendo%20la%20ganancia%2C%20por%20supuesto%20y%2C%20sinceramente%2C%20no%20creo%20que%20llegue%20a%20hacerlo%2C%20adem%C3%A1s%20de%20que%20si%20se%20termina%20de%20" title="Ping.fm"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.wikio.com/vote?url=http%3A%2F%2Fayudawordpress.com%2Fwordpress-en-html5%2F" title="Wikio"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/wikio.png" title="Wikio" alt="Wikio" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/getpf?url=http%3A%2F%2Fayudawordpress.com%2Fwordpress-en-html5%2F" title="Turn this article into a PDF!"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/pdf.png" title="Turn this article into a PDF!" alt="Turn this article into a PDF!" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=WordPress%20en%20HTML5&amp;body=http%3A%2F%2Fayudawordpress.com%2Fwordpress-en-html5%2F" title="E-mail this story to a friend!"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fayudawordpress.com%2Fwordpress-en-html5%2F" title="Print this article!"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print this article!" alt="Print this article!" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AyudaWordpress?a=Tq5iEuVMCec:6xXQ7p_mL9Y:Dsqc8YHEA1Y"><img src="http://feeds.feedburner.com/~ff/AyudaWordpress?i=Tq5iEuVMCec:6xXQ7p_mL9Y:Dsqc8YHEA1Y" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AyudaWordpress/~4/Tq5iEuVMCec" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/AyudaWordpress/~3/Tq5iEuVMCec/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plantillas y temas para wordpress recomendados.2</title>
		<link>http://carrero.es/plantillas-y-temas-para-wordpress-recomendados-2/4824</link>
		<comments>http://carrero.es/plantillas-y-temas-para-wordpress-recomendados-2/4824#comments</comments>
		<pubDate>Sun, 23 May 2010 21:51:28 +0000</pubDate>
		<dc:creator>planetawordpress</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[diseño]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plantillas]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://carrero.es/?p=4824</guid>
		<description><![CDATA[Otra nueva recopilación de plantillas y temas para wordpress casi gratis que seguro te resultará muy interesante y completa para crear tu sitio web.

Auguste HTML Premium Site, una plantilla muy interesante en rojo y blanco por solo 17$.
Plantilla NN Studio Premium para montar tu portafilio y web de empresa.
UMBOOM es un plantilla de gran calidad [...]pOriginal Post / Entrada Original: a href="http://carrero.es"Carrero.es/a. Si quieres a href="http://juegosweb.com"Juegos Gratis/a disfruta aquiacute; o a href="http://decoracion2.com"decora tu casa/a.br/br/a href="http://carrero.es/plantillas-y-temas-para-wordpress-recomendados-2/4824"Plantillas y temas para wordpress recomendados.2/a/p]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/RTCtnWWx05Rd6m3TZC1_vVZ4GNs/0/da"><img src="http://feedads.g.doubleclick.net/~a/RTCtnWWx05Rd6m3TZC1_vVZ4GNs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/RTCtnWWx05Rd6m3TZC1_vVZ4GNs/1/da"><img src="http://feedads.g.doubleclick.net/~a/RTCtnWWx05Rd6m3TZC1_vVZ4GNs/1/di" border="0" ismap="true"></img></a></p><p>Otra nueva recopilación de <a href="http://themeforest.es">plantillas y temas para wordpress</a> casi gratis que seguro te resultará muy interesante y completa para crear tu sitio web.</p>
<ul>
<li><a href="http://themeforest.net/item/auguste-html-premium-site-template/103214?ref=dcarrero">Auguste HTML Premium Site</a>, una plantilla muy interesante en rojo y blanco por solo 17$.</li>
<li><a href="http://themeforest.net/item/nn-studio-premium-template/103307?ref=dcarrero">Plantilla NN Studio Premium</a> para montar tu portafilio y web de empresa.</li>
<li><a href="http://themeforest.net/item/umboom-high-quality-professional-html-css/103909?ref=dcarrero">UMBOOM</a> es un plantilla de gran calidad y muy profesional en xhtml+css.</li>
<li><a href="http://themeforest.net/item/openhouse-real-estate-premium-wordpress-template/104662?ref=dcarrero">OpenHouse</a> para wordpress para crear su web inmobiliaria con buscador de viviendas.</li>
<li><a href="http://themeforest.net/item/the-glamour-business-portfolio-blog-wordpress/104438?ref=dcarrero">The glamour</a> es un tema para wordpress pensado para los negocios y mostrar tu portafolio.</li>
<li><a href="http://themeforest.net/item/socket/104189?ref=dcarrero">Socket</a> una plantilla y gestor de contenidos en PHP para montar tu web corporativa con todo tipo de detalles.</li>
<li><a href="http://themeforest.net/item/honorem/103437?ref=dcarrero">.honorem</a> es un tema perfecto para tu web corporativa, de negocios y portafolio.</li>
<li><a href="http://themeforest.net/item/asylum-beautifully-original-10-skins/104680?ref=dcarrero">Asylum</a> es un conjunto de originales plantillas para montar sitios corporativos con distinción.</li>
<li><a href="http://themeforest.net/item/distinct-portfolio-and-business-template-html/104692?ref=dcarrero">Distinct</a> es una plantilla html para portafoliso y negocios.</li>
<li><a href="http://themeforest.net/item/naturel-professional-xhtmlcss-theme/102861?ref=dcarrero">Naturel</a> es una plantilla profesional en xhtml+css para crear tu sitio de diseño web, negocios o portafolio.</li>
<li><a href="http://themeforest.net/item/microsite-clean-and-smooth-micro-template/103590?ref=dcarrero">MicroSite</a> una plantilla sencilla y limpia para montar tu curriculum web.</li>
</ul>
<p>Original Post / Entrada Original: <a href="http://carrero.es">Carrero.es</a>. Si quieres <a href="http://juegosweb.com">Juegos Gratis</a> disfruta aqu&iacute; o <a href="http://decoracion2.com">decora tu casa</a>.<br/><br/><a href="http://carrero.es/plantillas-y-temas-para-wordpress-recomendados-2/4824">Plantillas y temas para wordpress recomendados.2</a></p>
<img src="http://feeds.feedburner.com/~r/carrero/~4/5QfE5cCpfrI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://carrero.es/plantillas-y-temas-para-wordpress-recomendados-2/4824/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5: todas las nuevas etiquetas</title>
		<link>http://feedproxy.google.com/~r/AyudaWordpress/~3/_OpAabD-B8s/</link>
		<comments>http://feedproxy.google.com/~r/AyudaWordpress/~3/_OpAabD-B8s/#comments</comments>
		<pubDate>Sun, 23 May 2010 19:07:26 +0000</pubDate>
		<dc:creator>planetawordpress</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Desarrollo]]></category>
		<category><![CDATA[Experto]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[programación]]></category>
		<category><![CDATA[temas]]></category>
		<category><![CDATA[Tutoriales / Trucos]]></category>
		<category><![CDATA[Wordpress.org]]></category>

		<guid isPermaLink="false">http://ayudawordpress.com/?p=7901</guid>
		<description><![CDATA[
HTML5 viene con una buena cantidad de nuevas etiquetas de código así que si eres desarrollador o simplemente quieres empezar a conocerlas apunta, cada elemento de la lista está enlazado a la página de la descripción y modo de uso:

&#60;article&#62;
&#60;aside&#62;
&#60;audio&#62;
&#60;bb&#62;
&#60;canvas&#62;
&#60;command&#62;
&#60;datagrid&#62;
&#60;datalist&#62;
&#60;details&#62;
&#60;dialog&#62;
&#60;embed&#62;
&#60;eventsource&#62;
&#60;figcaption&#62;
&#60;figure&#62;
&#60;footer&#62;
&#60;header&#62;
&#60;hgroup&#62;
&#60;keygen&#62;
&#60;mark&#62;
&#60;menu&#62;
&#60;meter&#62;
&#60;nav&#62;
&#60;output&#62;
&#60;progress&#62;
&#60;rp&#62;
&#60;rt&#62;
&#60;ruby&#62;
&#60;section&#62;
&#60;source&#62;
&#60;summary&#62;
&#60;time&#62;
&#60;video&#62;

Muy pronto vas a empezar a verlas por todas partes, WordPress y sus temas incluidos, así [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ayudawordpress.com/wp-content/uploads/2010/05/estructura-tema-html5.gif" title="estructura-tema-html5" rel="lightbox[7901]"><img class="aligncenter size-medium wp-image-7902" title="estructura-tema-html5" src="http://ayudawordpress.com/wp-content/uploads/2010/05/estructura-tema-html5-500x250.gif" alt="" width="500" height="250" /></a></p>
<p><strong>HTML5</strong> viene con una buena cantidad de nuevas etiquetas de código así que si eres desarrollador o simplemente quieres empezar a conocerlas apunta, cada elemento de la lista está enlazado a la página de la descripción y modo de uso:</p>
<ul>
<li><a href="http://www.w3schools.com/html5/tag_article.asp">&lt;article&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_aside.asp">&lt;aside&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_audio.asp">&lt;audio&gt;</a></li>
<li><a href="http://www.quackit.com/html_5/tags/html_bb_tag.cfm">&lt;bb&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_canvas.asp">&lt;canvas&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_command.asp">&lt;command&gt;</a></li>
<li><a href="http://www.quackit.com/html_5/tags/html_datagrid_tag.cfm">&lt;datagrid&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_datalist.asp">&lt;datalist&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_details.asp">&lt;details&gt;</a></li>
<li><a href="http://www.quackit.com/html_5/tags/html_dialog_tag.cfm">&lt;dialog&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_embed.asp">&lt;embed&gt;</a></li>
<li><a href="http://www.quackit.com/html_5/tags/html_eventsource_tag.cfm">&lt;eventsource&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_figcaption.asp">&lt;figcaption&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_figure.asp">&lt;figure&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_footer.asp">&lt;footer&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_header.asp">&lt;header&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_hgroup.asp">&lt;hgroup&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_keygen.asp">&lt;keygen&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_mark.asp">&lt;mark&gt;</a></li>
<li><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/interactive-elements.html">&lt;menu&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_meter.asp">&lt;meter&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_nav.asp">&lt;nav&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_output.asp">&lt;output&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_progress.asp">&lt;progress&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_rp.asp">&lt;rp&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_rt.asp">&lt;rt&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_ruby.asp">&lt;ruby&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_section.asp">&lt;section&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_source.asp">&lt;source&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_summary.asp">&lt;summary&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_time.asp">&lt;time&gt;</a></li>
<li><a href="http://www.w3schools.com/html5/tag_video.asp">&lt;video&gt;</a></li>
</ul>
<p>Muy pronto vas a empezar a verlas por todas partes, WordPress y sus temas incluidos, así que toma buena nota, hay importantes novedades, sobre todo no pierdas de vista las tags &lt;article&gt;, &lt;nav&gt;, &lt;aside&gt; y &lt;section&gt;.</p>
<p>Si quieres empezar a probar códigos aquí tienes una lista de temas WordPress en HTML5:</p>
<ul>
<li><a href="http://www.thatstandardsguy.co.uk/blog/2009/04/03/brave-new-world-wordpress-theme/">Brave New World</a></li>
<li><a href="http://digwp.com/2009/07/free-html-5-wordpress-theme/">H5</a></li>
<li><a href="http://wpengineer.com/wordpress-basis-theme-html5/">Wordpress Basis</a></li>
<li><a href="http://jpmcgarrity.com/blog/index.php/2009/07/html-5-wordpress-theme-naked/">Wordpress Naked</a></li>
<li><a href="http://dreamgratuit.canalblog.com/archives/2010/01/12/16501225.html">FreeDream</a></li>
<li><a href="http://wordpress.org/support/topic/307687">Pure HTML5 theme</a></li>
</ul>
<p>Referencias: <a href="http://www.w3schools.com/html5/html5_reference.asp">w3schools</a> y <a href="http://www.quackit.com/html_5/tags/">quackit</a></p>



¿Te gustó este post? ¡Compártelo!


	<a rel="nofollow"  href="http://bitacoras.com/anotaciones/http%3A%2F%2Fayudawordpress.com%2Fhtml5-todas-las-nuevas-etiquetas%2F" title="Bitacoras.com"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/bitacoras.png" title="Bitacoras.com" alt="Bitacoras.com" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=http%3A%2F%2Fayudawordpress.com%2Fhtml5-todas-las-nuevas-etiquetas%2F" title="TwitThis"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fayudawordpress.com%2Fhtml5-todas-las-nuevas-etiquetas%2F&amp;t=HTML5%3A%20todas%20las%20nuevas%20etiquetas" title="Facebook"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://meneame.net/submit.php?url=http%3A%2F%2Fayudawordpress.com%2Fhtml5-todas-las-nuevas-etiquetas%2F" title="Meneame"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/meneame.png" title="Meneame" alt="Meneame" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fayudawordpress.com%2Fhtml5-todas-las-nuevas-etiquetas%2F&amp;title=HTML5%3A%20todas%20las%20nuevas%20etiquetas&amp;annotation=%0D%0A%0D%0AHTML5%20viene%20con%20una%20buena%20cantidad%20de%20nuevas%20etiquetas%20de%20c%C3%B3digo%20as%C3%AD%20que%20si%20eres%20desarrollador%20o%20simplemente%20quieres%20empezar%20a%20conocerlas%20apunta%2C%20cada%20elemento%20de%20la%20lista%20est%C3%A1%20enlazado%20a%20la%20p%C3%A1gina%20de%20la%20descripci%C3%B3n%20y%20modo%20de%20uso%3A%0D%0A%0D%0A%09%26lt%3Bar" title="Google Bookmarks"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fayudawordpress.com%2Fhtml5-todas-las-nuevas-etiquetas%2F&amp;title=HTML5%3A%20todas%20las%20nuevas%20etiquetas&amp;notes=%0D%0A%0D%0AHTML5%20viene%20con%20una%20buena%20cantidad%20de%20nuevas%20etiquetas%20de%20c%C3%B3digo%20as%C3%AD%20que%20si%20eres%20desarrollador%20o%20simplemente%20quieres%20empezar%20a%20conocerlas%20apunta%2C%20cada%20elemento%20de%20la%20lista%20est%C3%A1%20enlazado%20a%20la%20p%C3%A1gina%20de%20la%20descripci%C3%B3n%20y%20modo%20de%20uso%3A%0D%0A%0D%0A%09%26lt%3Bar" title="del.icio.us"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fayudawordpress.com%2Fhtml5-todas-las-nuevas-etiquetas%2F&amp;title=HTML5%3A%20todas%20las%20nuevas%20etiquetas" title="Live"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fayudawordpress.com%2Fhtml5-todas-las-nuevas-etiquetas%2F" title="Technorati"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fayudawordpress.com%2Fhtml5-todas-las-nuevas-etiquetas%2F&amp;title=HTML5%3A%20todas%20las%20nuevas%20etiquetas&amp;body=%0D%0A%0D%0AHTML5%20viene%20con%20una%20buena%20cantidad%20de%20nuevas%20etiquetas%20de%20c%C3%B3digo%20as%C3%AD%20que%20si%20eres%20desarrollador%20o%20simplemente%20quieres%20empezar%20a%20conocerlas%20apunta%2C%20cada%20elemento%20de%20la%20lista%20est%C3%A1%20enlazado%20a%20la%20p%C3%A1gina%20de%20la%20descripci%C3%B3n%20y%20modo%20de%20uso%3A%0D%0A%0D%0A%09%26lt%3Bar" title="Ping.fm"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.wikio.com/vote?url=http%3A%2F%2Fayudawordpress.com%2Fhtml5-todas-las-nuevas-etiquetas%2F" title="Wikio"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/wikio.png" title="Wikio" alt="Wikio" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/getpf?url=http%3A%2F%2Fayudawordpress.com%2Fhtml5-todas-las-nuevas-etiquetas%2F" title="Turn this article into a PDF!"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/pdf.png" title="Turn this article into a PDF!" alt="Turn this article into a PDF!" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=HTML5%3A%20todas%20las%20nuevas%20etiquetas&amp;body=http%3A%2F%2Fayudawordpress.com%2Fhtml5-todas-las-nuevas-etiquetas%2F" title="E-mail this story to a friend!"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fayudawordpress.com%2Fhtml5-todas-las-nuevas-etiquetas%2F" title="Print this article!"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print this article!" alt="Print this article!" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AyudaWordpress?a=_OpAabD-B8s:tSx4VBv9j5U:Dsqc8YHEA1Y"><img src="http://feeds.feedburner.com/~ff/AyudaWordpress?i=_OpAabD-B8s:tSx4VBv9j5U:Dsqc8YHEA1Y" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AyudaWordpress/~4/_OpAabD-B8s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/AyudaWordpress/~3/_OpAabD-B8s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actualizar de WordPress Mu a WordPress 3.0</title>
		<link>http://feedproxy.google.com/~r/AyudaWordpress/~3/5uynXRxkQZk/</link>
		<comments>http://feedproxy.google.com/~r/AyudaWordpress/~3/5uynXRxkQZk/#comments</comments>
		<pubDate>Wed, 12 May 2010 19:08:36 +0000</pubDate>
		<dc:creator>planetawordpress</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[código]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[RewriteRule]]></category>
		<category><![CDATA[Tutoriales / Trucos]]></category>
		<category><![CDATA[Wordpress 3.0]]></category>
		<category><![CDATA[wordpress mu]]></category>
		<category><![CDATA[Wordpress.org]]></category>
		<category><![CDATA[wp-config.php]]></category>

		<guid isPermaLink="false">http://ayudawordpress.com/?p=7877</guid>
		<description><![CDATA[
Se avecina el advenimiento de WordPress 3.0 y una de las preguntas del millón es ¿como actualizo de WordPress MU a WordPress 3.0?.
Y es que hay muchas guías de como pasar de WordPress "normal" a MU pero ¿al revés?. Casi nunca se había planteado esta cuestión, pero claro, ahora es distinto, ahora todo se integra [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ayudawordpress.com/wp-content/uploads/2008/12/future.jpg" title="future" rel="lightbox[7877]"><img src="http://ayudawordpress.com/wp-content/uploads/2008/12/future-300x121.jpg" alt="" title="future" width="300" height="121" class="aligncenter size-medium wp-image-3650" /></a></p>
<p>Se avecina el advenimiento de <strong>WordPress 3.0</strong> y una de las preguntas del millón es <strong>¿como actualizo de WordPress MU a WordPress 3.0?</strong>.</p>
<p>Y es que hay muchas guías de como pasar de WordPress "normal" a MU pero ¿al revés?. Casi nunca se había planteado esta cuestión, pero claro, ahora es distinto, ahora todo se integra en un solo WordPress.<br />
<span id="more-7877"></span></p>
<p>Afortunadamente <a href="http://developersmind.com/2010/05/12/upgrading-wordpress-mu-2-9-2-to-wordpress-3-0-with-multisite/#comment-37">Developers Mind ha creado una guía</a> muy clarita y sencilla de como pasar de WordPress MU (v 2.9.2) a WordPress 3.0 (beta 2), que comparto, para los que no os apañéis con el inglés …</p>
<p>1. Remplaza los ficheros de WordPress:<br />
Descarga y descomprime la última versión de WordPress 3.0 (beta 2). Borra las carpetas wp-admin y wp-includes. Sube los archivos descomprimidos al servidor, sobreescribe los archivos antiguos. Asegúrate de que sobreescribes todos los archivos, y presta atención especial a la carpeta wp-content. Debes sobreescribir los archivos de esta carpeta y no remplazar la carpeta con la nueva, ya que la nueva contiene los temas y los plugins (como verás, esto es muuuy distinto a lo que solemos recomendar en Ayuda WordPress para una actualización "normal" de WordPress, no es un error de transcripción).</p>
<p>2. Actualiza WordPress:<br />
Accede al escritorio de WordPRess y sigue el enlace que te pide que actualices la red (update network) para, de este modo, actualizar todos los sitios (blogs) de tu red.<br />
<a href="http://ayudawordpress.com/wp-content/uploads/2010/05/update-network.png" title="update network" rel="lightbox[7877]"><img src="http://ayudawordpress.com/wp-content/uploads/2010/05/update-network-500x178.png" alt="" title="update network" width="500" height="178" class="aligncenter size-medium wp-image-7878" /></a></p>
<p>3. Actualiza wp-config:<br />
WordPress encripta las cookies pero debes añadir el código <code>NONCE_SALT</code> mostrado en la parte superior del escritorio al fichero wp-config.php. Por ejemplo: <code>define( 'NONCE_SALT', 'a<.4I)#p^-iy?sbb3JPu+W~-Zk|aPLMN[TvoiHIKGI_bbB-h?iliBb2ra' )</code>. Este código será único para tu instalación. Añádelo encima de la línea que dice: <code>/* That's all, stop editing! Happy blogging. */</code></p>
<div class="igBar"><span id="lhtml-13"><a href="http://feedproxy.google.com/~r/AyudaWordpress/~3/5uynXRxkQZk/#" onclick="javascript:showCodeTxt('html-13'); return false;">Clic para ver Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">HTML:</span>
<div id="html-13">
<div class="html">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">define( &quot;WP_USE_MULTIPLE_DB&quot;, false );</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">define( 'NONCE_SALT', 'a<span style="color: #009900;">&lt;U3S<span style="color: #66cc66;">&#91;</span> g&lt;.4I<span style="color: #66cc66;">&#41;</span>#p^-iy?sbb3JPu+W~-Zk|aPLMN<span style="color: #66cc66;">&#91;</span>TvoiHIKGI_bbB-h?iliBb2ra<span style="color: #ff0000;">' );</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #ff0000;">/* That'</span>s all, stop editing! Happy blogging. */</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">/** Absolute path to the WordPress directory. */</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">if <span style="color: #66cc66;">&#40;</span> !defined<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'ABSPATH'</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; define<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'ABSPATH'</span>, dirname<span style="color: #66cc66;">&#40;</span>__FILE__<span style="color: #66cc66;">&#41;</span> . <span style="color: #ff0000;">'/'</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">/** Sets up WordPress vars and included files. */</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">require_once<span style="color: #66cc66;">&#40;</span>ABSPATH . <span style="color: #ff0000;">'wp-settings.php'</span><span style="color: #66cc66;">&#41;</span>; </span></div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>4. Actualiza las reglas de Rewrite:<br />
El fichero <code>wp-content/blogs.php</code> se ha dejado de usar en WordPress 3.0 y debes actualizar las reglas de rewrite para que usen el archivo <code>wp-includes/ms-files.php</code>. Borra la referencia al archivo <code>wp-content/blogs.php</code> y cámbialo a <code>wp-includes/ms-files.php</code> en el archivo .htaccess:</p>
<div class="igBar"><span id="lhtml-14"><a href="http://feedproxy.google.com/~r/AyudaWordpress/~3/5uynXRxkQZk/#" onclick="javascript:showCodeTxt('html-14'); return false;">Clic para ver Texto Plano</a></span></div>
<div class="syntax_hilite"><span class="langName">HTML:</span>
<div id="html-14">
<div class="html">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">RewriteEngine On</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">RewriteBase /</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">#archivos subidos</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">RewriteRule ^(.*/)?files/$ index.php [L]</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.php?file=$2 [L]</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"># agrega una barra a /wp-admin</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">RewriteCond %{REQUEST_URI} ^.*/wp-admin$</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">RewriteRule ^(.+)$ $1/ [R=301,L]</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">RewriteCond %{REQUEST_FILENAME} -f [OR]</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">RewriteCond %{REQUEST_FILENAME} -d</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">RewriteRule . - [L]</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">RewriteRule&nbsp; ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">RewriteRule&nbsp; ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">RewriteRule . index.php [L]</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;">&lt;IfModule mod_security.c&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;">&lt;Files async-upload.php&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">SecFilterEngine Off</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">SecFilterScanPOST Off</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;</span></a>/Files&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;</span></a>/IfModule&gt;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Borra también el archivo <code>blogs.php</code> una vez hechos los cambios en el .htaccess</p>
<p>También se ha dejado de usar <code>wpmu-settings.php</code> en  WordPress 3.0, y puede borrarse igualmente.</p>
<p>Ah bueno, y como siempre, deberías hacer copia de seguridad de tu base de datos antes de actualizar WordPress, que no se te olvide.</p>



¿Te gustó este post? ¡Compártelo!


	<a rel="nofollow"  href="http://bitacoras.com/anotaciones/http%3A%2F%2Fayudawordpress.com%2Factualizar-de-wordpress-mu-a-wordpress-3-0%2F" title="Bitacoras.com"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/bitacoras.png" title="Bitacoras.com" alt="Bitacoras.com" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=http%3A%2F%2Fayudawordpress.com%2Factualizar-de-wordpress-mu-a-wordpress-3-0%2F" title="TwitThis"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fayudawordpress.com%2Factualizar-de-wordpress-mu-a-wordpress-3-0%2F&amp;t=Actualizar%20de%20WordPress%20Mu%20a%20WordPress%203.0" title="Facebook"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://meneame.net/submit.php?url=http%3A%2F%2Fayudawordpress.com%2Factualizar-de-wordpress-mu-a-wordpress-3-0%2F" title="Meneame"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/meneame.png" title="Meneame" alt="Meneame" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fayudawordpress.com%2Factualizar-de-wordpress-mu-a-wordpress-3-0%2F&amp;title=Actualizar%20de%20WordPress%20Mu%20a%20WordPress%203.0&amp;annotation=%0D%0A%0D%0ASe%20avecina%20el%20advenimiento%20de%20WordPress%203.0%20y%20una%20de%20las%20preguntas%20del%20mill%C3%B3n%20es%20%C2%BFcomo%20actualizo%20de%20WordPress%20MU%20a%20WordPress%203.0%3F.%0D%0A%0D%0AY%20es%20que%20hay%20muchas%20gu%C3%ADas%20de%20como%20pasar%20de%20WordPress%20%22normal%22%20a%20MU%20pero%20%C2%BFal%20rev%C3%A9s%3F.%20Casi%20nunca%20se%20hab%C3%ADa%20pl" title="Google Bookmarks"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fayudawordpress.com%2Factualizar-de-wordpress-mu-a-wordpress-3-0%2F&amp;title=Actualizar%20de%20WordPress%20Mu%20a%20WordPress%203.0&amp;notes=%0D%0A%0D%0ASe%20avecina%20el%20advenimiento%20de%20WordPress%203.0%20y%20una%20de%20las%20preguntas%20del%20mill%C3%B3n%20es%20%C2%BFcomo%20actualizo%20de%20WordPress%20MU%20a%20WordPress%203.0%3F.%0D%0A%0D%0AY%20es%20que%20hay%20muchas%20gu%C3%ADas%20de%20como%20pasar%20de%20WordPress%20%22normal%22%20a%20MU%20pero%20%C2%BFal%20rev%C3%A9s%3F.%20Casi%20nunca%20se%20hab%C3%ADa%20pl" title="del.icio.us"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fayudawordpress.com%2Factualizar-de-wordpress-mu-a-wordpress-3-0%2F&amp;title=Actualizar%20de%20WordPress%20Mu%20a%20WordPress%203.0" title="Live"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fayudawordpress.com%2Factualizar-de-wordpress-mu-a-wordpress-3-0%2F" title="Technorati"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fayudawordpress.com%2Factualizar-de-wordpress-mu-a-wordpress-3-0%2F&amp;title=Actualizar%20de%20WordPress%20Mu%20a%20WordPress%203.0&amp;body=%0D%0A%0D%0ASe%20avecina%20el%20advenimiento%20de%20WordPress%203.0%20y%20una%20de%20las%20preguntas%20del%20mill%C3%B3n%20es%20%C2%BFcomo%20actualizo%20de%20WordPress%20MU%20a%20WordPress%203.0%3F.%0D%0A%0D%0AY%20es%20que%20hay%20muchas%20gu%C3%ADas%20de%20como%20pasar%20de%20WordPress%20%22normal%22%20a%20MU%20pero%20%C2%BFal%20rev%C3%A9s%3F.%20Casi%20nunca%20se%20hab%C3%ADa%20pl" title="Ping.fm"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.wikio.com/vote?url=http%3A%2F%2Fayudawordpress.com%2Factualizar-de-wordpress-mu-a-wordpress-3-0%2F" title="Wikio"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/wikio.png" title="Wikio" alt="Wikio" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/getpf?url=http%3A%2F%2Fayudawordpress.com%2Factualizar-de-wordpress-mu-a-wordpress-3-0%2F" title="Turn this article into a PDF!"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/pdf.png" title="Turn this article into a PDF!" alt="Turn this article into a PDF!" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=Actualizar%20de%20WordPress%20Mu%20a%20WordPress%203.0&amp;body=http%3A%2F%2Fayudawordpress.com%2Factualizar-de-wordpress-mu-a-wordpress-3-0%2F" title="E-mail this story to a friend!"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fayudawordpress.com%2Factualizar-de-wordpress-mu-a-wordpress-3-0%2F" title="Print this article!"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print this article!" alt="Print this article!" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AyudaWordpress?a=5uynXRxkQZk:QgOwvhyiyPg:Dsqc8YHEA1Y"><img src="http://feeds.feedburner.com/~ff/AyudaWordpress?i=5uynXRxkQZk:QgOwvhyiyPg:Dsqc8YHEA1Y" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AyudaWordpress/~4/5uynXRxkQZk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/AyudaWordpress/~3/5uynXRxkQZk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plantilla HTML+CSS 11 en 1: Echoes</title>
		<link>http://carrero.es/plantilla-htmlcss-11-en-1-echoes/4798</link>
		<comments>http://carrero.es/plantilla-htmlcss-11-en-1-echoes/4798#comments</comments>
		<pubDate>Mon, 10 May 2010 09:20:07 +0000</pubDate>
		<dc:creator>planetawordpress</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[diseño]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Plantilla]]></category>
		<category><![CDATA[premium]]></category>

		<guid isPermaLink="false">http://carrero.es/?p=4798</guid>
		<description><![CDATA[Echoes es una plantilla CSS+HTML de alta calidad y que está pensada para el diseño de sitios para empresas y portafolio de desarrolladores. Esta plantilla es un 11 en 1, ya que incluye 3 estilos para página principal, 7 plantillas de portafolio, 4 plantillas de páginas y un formulario de contacto con validación AJAX.
Entre sus [...]pOriginal Post / Entrada Original: a href="http://carrero.es"Carrero.es/a. Si quieres a href="http://juegosweb.com"Juegos Gratis/a disfruta aquiacute; o a href="http://decoracion2.com"decora tu casa/a.br/br/a href="http://carrero.es/plantilla-htmlcss-11-en-1-echoes/4798"Plantilla HTML+CSS 11 en 1: Echoes/a/p]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/pztCD7ji56DFp6ON91V5AHlM_z4/0/da"><img src="http://feedads.g.doubleclick.net/~a/pztCD7ji56DFp6ON91V5AHlM_z4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/pztCD7ji56DFp6ON91V5AHlM_z4/1/da"><img src="http://feedads.g.doubleclick.net/~a/pztCD7ji56DFp6ON91V5AHlM_z4/1/di" border="0" ismap="true"></img></a></p><p><a rel="attachment wp-att-4799" href="http://carrero.es/plantilla-htmlcss-11-en-1-echoes/4798/echoes-plantilla-web"><img class="aligncenter size-medium wp-image-4799" title="echoes plantilla web" src="http://carrero.es/wp-content/uploads/2010/05/echoes-plantilla-web-470x238.jpg" alt="echoes plantilla web 470x238 Plantilla HTML+CSS 11 en 1: Echoes" width="470" height="238" /></a></p>
<p><strong><a href="http://themeforest.net/item/echoes-premium-css-html-11-in-1/100814?ref=dcarrero">Echoes</a> es una plantilla CSS+HTML de alta calidad</strong> y que está pensada para el diseño de sitios para empresas y portafolio de desarrolladores. Esta plantilla es un 11 en 1, ya que incluye 3 estilos para página principal, 7 plantillas de portafolio, 4 plantillas de páginas y un formulario de contacto con validación AJAX.</p>
<p>Entre sus características están la muestra de miniaturas en modo presentación o carrusel, páginas con ancho completo, soporte para imágenes y vídeos, menús, multi-columna en el pie, y otras muchas posibilidades de personalización.</p>
<p>Más información sobre la plantilla <a href="http://themeforest.net/item/echoes-premium-css-html-11-in-1/100814?ref=dcarrero">Echoes</a>.</p>
<p>Original Post / Entrada Original: <a href="http://carrero.es">Carrero.es</a>. Si quieres <a href="http://juegosweb.com">Juegos Gratis</a> disfruta aqu&iacute; o <a href="http://decoracion2.com">decora tu casa</a>.<br/><br/><a href="http://carrero.es/plantilla-htmlcss-11-en-1-echoes/4798">Plantilla HTML+CSS 11 en 1: Echoes</a></p>
<img src="http://feeds.feedburner.com/~r/carrero/~4/fnNKR5Eh2PM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://carrero.es/plantilla-htmlcss-11-en-1-echoes/4798/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Relanzando Programacion en Castellano en beta</title>
		<link>http://carrero.es/programacion-beta/4782</link>
		<comments>http://carrero.es/programacion-beta/4782#comments</comments>
		<pubDate>Thu, 29 Apr 2010 10:39:17 +0000</pubDate>
		<dc:creator>planetawordpress</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[empresas]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programación]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[sitios web]]></category>

		<guid isPermaLink="false">http://carrero.es/?p=4782</guid>
		<description><![CDATA[Actualización: Ya está abierto oficialmente la Beta de Programacion.com con acceso también por programacion.net y programacion.es
Después de meses, por no decir años, con un poco de abandono del proyecto Programación en Castellano, SL. Volvemos a la vida y empezar nuevamente a actualizar de forma regular y aceptar contenidos de los más de 200.000 desarrolladores registrados, [...]<p>Original Post / Entrada Original: <a href="http://carrero.es">Carrero.es</a>. Si quieres <a href="http://juegosweb.com">Juegos Gratis</a> disfruta aqu&#237; o <a href="http://decoracion2.com">decora tu casa</a>.<br /><br /><a href="http://carrero.es/programacion-beta/4782">Relanzando Programacion en Castellano en beta</a></p>
]]></description>
			<content:encoded><![CDATA[pstronga href="http://carrero.es/wp-content/uploads/2010/04/programacion-beta.gif"img class="alignright size-thumbnail wp-image-4783" style="margin: 6px;" title="programacion-beta" src="http://carrero.es/wp-content/uploads/2010/04/programacion-beta-150x150.gif" alt="programacion beta 150x150 Relanzando Programacion en Castellano en beta" width="150" height="150" //aActualización/strong: Ya está abierto oficialmente la Beta de a href="http://Programacion.com"Programacion.com/a con acceso también por a href="http://www.programacion.net"programacion.net/a y a href="http://www.programacion.es"programacion.es/a/p
pDespués de meses, por no decir años, con un poco de abandono del proyecto strongProgramación en Castellano, SL./strong Volvemos a la vida y empezar nuevamente a actualizar de forma regular y aceptar contenidos de los más de 200.000 desarrolladores registrados, que desde ya pueden colaborar enviado noticias, artículos, código fuente, #8230; de todo tipo de contenidos a href="http://nuevo.programacion.com/php/"PHP/a, a href="http://nuevo.programacion.com/mysql/"Mysql/a, a href="http://nuevo.programacion.com/java"Java/a, a href="http://nuevo.programacion.com/asp/"ASP/a, a href="http://nuevo.programacion.com/html/"HTML/a, a href="http://nuevo.programacion.com/css/"CSS/a, a href="http://nuevo.programacion.com/ruby/"Ruby/a, #8230;/p
pProgramacion.com, programacion.net o programacion.es, aun está en fase beta y para acceder antes del lanzamiento podéis hacerlo a través de stronga href="http://nuevo.programacion.com"http://nuevo.programacion.com/a/strong/p
pstrongDeja aquí tus comentarios, esperamos mejorar poco a poco y mi hermano ya está trabajando en ello con el equipo de programación.br /
/strong/p
pOriginal Post / Entrada Original: a href="http://carrero.es"Carrero.es/a. Si quieres a href="http://juegosweb.com"Juegos Gratis/a disfruta aquiacute; o a href="http://decoracion2.com"decora tu casa/a.br/br/a href="http://carrero.es/programacion-beta/4782"Relanzando Programacion en Castellano en beta/a/p

pa href="http://feedads.g.doubleclick.net/~a/96M1IbcIe41hxVpVLCqfXZUNyaI/0/da"img src="http://feedads.g.doubleclick.net/~a/96M1IbcIe41hxVpVLCqfXZUNyaI/0/di" border="0" ismap="true"/img/abr/
a href="http://feedads.g.doubleclick.net/~a/96M1IbcIe41hxVpVLCqfXZUNyaI/1/da"img src="http://feedads.g.doubleclick.net/~a/96M1IbcIe41hxVpVLCqfXZUNyaI/1/di" border="0" ismap="true"/img/a/pimg src="http://feeds.feedburner.com/~r/carrero/es/~4/6rVXKz2cU4I" height="1" width="1"/]]></content:encoded>
			<wfw:commentRss>http://carrero.es/programacion-beta/4782/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML o WordPress</title>
		<link>http://feedproxy.google.com/~r/AyudaWordpress/~3/fqudnAy9Vco/</link>
		<comments>http://feedproxy.google.com/~r/AyudaWordpress/~3/fqudnAy9Vco/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 22:00:16 +0000</pubDate>
		<dc:creator>planetawordpress</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Miniposts]]></category>
		<category><![CDATA[Opinión]]></category>
		<category><![CDATA[Wordpress.org]]></category>

		<guid isPermaLink="false">http://ayudawordpress.com/?p=7787</guid>
		<description><![CDATA[Si tienes dudas entre montar tu web en HTML o usar WordPress igual este argumentario te sirve. También sirve para adoctrinar a tus clientes si eres desarrollador.
Contenido exclusivo para suscriptores al Feed
¡Gracias por seguirnos a diario!. Premiamos tu fidelidad ofreciéndote habitualmente contenidos exclusivos. Hoy puedes descargar:
 Guía Domina tu Blog



¿Te gustó este post? ¡Compártelo!


	
	
	
	
	
	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p>Si tienes dudas entre montar tu web en HTML o usar WordPress igual <a href="http://ciberprensa.com/web-html-o-blog/">este argumentario</a> te sirve. También sirve para adoctrinar a tus clientes si eres desarrollador.<br />
<h3><font color="#000080">Contenido exclusivo para suscriptores al Feed</font></h3>
<p><font color="#808080">¡Gracias por seguirnos a diario!. Premiamos tu fidelidad ofreciéndote habitualmente contenidos exclusivos. Hoy puedes descargar:</font></p>
<p><a href="http://ayudawordpress.com/downloads/?did=112" title="Clic aquí para iniciar la descarga"><img src="http://ayudawordpress.com/wp-content/uploads/2008/01/wp-install.jpg" alt="Clic aquí para iniciar la descarga" align="middle" border="0" height="59" width="43" /> Guía Domina tu Blog</a></p>



¿Te gustó este post? ¡Compártelo!


	<a rel="nofollow"  href="http://bitacoras.com/anotaciones/http%3A%2F%2Fayudawordpress.com%2Fhtml-o-wordpress%2F" title="Bitacoras.com"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/bitacoras.png" title="Bitacoras.com" alt="Bitacoras.com" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=http%3A%2F%2Fayudawordpress.com%2Fhtml-o-wordpress%2F" title="TwitThis"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fayudawordpress.com%2Fhtml-o-wordpress%2F&amp;t=HTML%20o%20WordPress" title="Facebook"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://meneame.net/submit.php?url=http%3A%2F%2Fayudawordpress.com%2Fhtml-o-wordpress%2F" title="Meneame"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/meneame.png" title="Meneame" alt="Meneame" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fayudawordpress.com%2Fhtml-o-wordpress%2F&amp;title=HTML%20o%20WordPress&amp;annotation=Si%20tienes%20dudas%20entre%20montar%20tu%20web%20en%20HTML%20o%20usar%20WordPress%20igual%20este%20argumentario%20te%20sirve.%20Tambi%C3%A9n%20sirve%20para%20adoctrinar%20a%20tus%20clientes%20si%20eres%20desarrollador." title="Google Bookmarks"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fayudawordpress.com%2Fhtml-o-wordpress%2F&amp;title=HTML%20o%20WordPress&amp;notes=Si%20tienes%20dudas%20entre%20montar%20tu%20web%20en%20HTML%20o%20usar%20WordPress%20igual%20este%20argumentario%20te%20sirve.%20Tambi%C3%A9n%20sirve%20para%20adoctrinar%20a%20tus%20clientes%20si%20eres%20desarrollador." title="del.icio.us"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fayudawordpress.com%2Fhtml-o-wordpress%2F&amp;title=HTML%20o%20WordPress" title="Live"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fayudawordpress.com%2Fhtml-o-wordpress%2F" title="Technorati"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fayudawordpress.com%2Fhtml-o-wordpress%2F&amp;title=HTML%20o%20WordPress&amp;body=Si%20tienes%20dudas%20entre%20montar%20tu%20web%20en%20HTML%20o%20usar%20WordPress%20igual%20este%20argumentario%20te%20sirve.%20Tambi%C3%A9n%20sirve%20para%20adoctrinar%20a%20tus%20clientes%20si%20eres%20desarrollador." title="Ping.fm"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.wikio.com/vote?url=http%3A%2F%2Fayudawordpress.com%2Fhtml-o-wordpress%2F" title="Wikio"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/wikio.png" title="Wikio" alt="Wikio" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/getpf?url=http%3A%2F%2Fayudawordpress.com%2Fhtml-o-wordpress%2F" title="Turn this article into a PDF!"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/pdf.png" title="Turn this article into a PDF!" alt="Turn this article into a PDF!" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=HTML%20o%20WordPress&amp;body=http%3A%2F%2Fayudawordpress.com%2Fhtml-o-wordpress%2F" title="E-mail this story to a friend!"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fayudawordpress.com%2Fhtml-o-wordpress%2F" title="Print this article!"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print this article!" alt="Print this article!" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AyudaWordpress?a=fqudnAy9Vco:O-L8MfsFu2I:Dsqc8YHEA1Y"><img src="http://feeds.feedburner.com/~ff/AyudaWordpress?i=fqudnAy9Vco:O-L8MfsFu2I:Dsqc8YHEA1Y" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AyudaWordpress/~4/fqudnAy9Vco" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/AyudaWordpress/~3/fqudnAy9Vco/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>La inyección de código NO es en WordPress 2.9.2</title>
		<link>http://feedproxy.google.com/~r/AyudaWordpress/~3/g9XQM4AcyVs/</link>
		<comments>http://feedproxy.google.com/~r/AyudaWordpress/~3/g9XQM4AcyVs/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 18:08:43 +0000</pubDate>
		<dc:creator>planetawordpress</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[seguridad]]></category>
		<category><![CDATA[Tutoriales / Trucos]]></category>
		<category><![CDATA[Wordpress.org]]></category>

		<guid isPermaLink="false">http://ayudawordpress.com/?p=7710</guid>
		<description><![CDATA[
Desde hace días estamos viendo noticias acerca de ataques a sitios actualizados a WordPress 2.9.2, o sea, la última versión estable y, tras una espera razonable por mi parte para ver por donde iban los tiros, y constatar esta misma tarde que es lo que está pasando en varios sitios, puedo apuntar lo siguiente:


El ataque [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-7711" title="wordpress-hack" src="http://ayudawordpress.com/wp-content/uploads/2010/04/wordpress-hack.jpg" alt="" width="434" height="287" /></p>
<p>Desde hace días estamos viendo noticias acerca de <a href="http://www.incubaweb.com/cuidado-blogs-con-wordpress-estan-siendo-atacados/">ataques a sitios actualizados a WordPress 2.9.2</a>, o sea, la última versión estable y, tras una espera razonable por mi parte para ver por donde iban los tiros, y constatar esta misma tarde que es lo que está pasando en varios sitios, puedo apuntar lo siguiente:</p>
<p><span id="more-7710"></span></p>
<ol>
<li>El ataque es real, <strong>afecta a cualquier instalación de WordPress, incluida la 2.9.2, la 3.0, la que sea</strong>.</li>
<li>Los síntomas principales de los ataques son popups de imágenes, granjas de enlaces antes de , el escritorio desconfigurado y múltiples variaciones de los anteriores.</li>
<li>Se produce una <a href="http://forums.overclockers.co.uk/showthread.php?t=18128737"><strong>inyección de código</strong></a>, encriptado en base64 en <strong>todos los archivos php</strong> del sitio.</li>
<li>Se introduce un código html en la tabla <code>wp-options</code> de la base de datos (no siempre).</li>
<li><strong>El problema no es de WordPress</strong>, como <a href="http://blog.networksolutions.com/2010/wordpress-is-not-the-issue/">Network Solutions ha reconocido</a> ante la <a href="http://wordpress.org/development/2010/04/file-permissions/">aclaración de Matt</a></li>
<li>Cualquier CMS es susceptible de este tipo de ataque, y ya se han visto sitios creado con Drupal afectados</li>
<li>Cualquier carpeta con permisos superiores a 644 puede verse afectada. Encontrarás que los plugins por defecto obtienen permisos 755, así como <code>wp-config.php</code></li>
<li>El problema proviene de servidores con problemas de seguridad, mayoritariamente VPS</li>
</ol>
<p>Si tu sitio ha sido atacado debes repasar estos enlaces para asegurar lo máximo posible tu instalación de WordPress:</p>
<ul>
<li><a href="http://ayudawordpress.com/seguridad-en-la-instalacion-de-wordpress/">Seguridad en la instalación de WordPress</a></li>
<li><a href="http://ayudawordpress.com/11-maneras-de-proteger-la-administracion-de-wordpress/">12 maneras de proteger la administración de WordPress</a></li>
<li><a href="http://ayudawordpress.com/evita-ataques-de-fuerza-fruta/">Evita ataques de fuerza bruta</a></li>
<li><a href="http://ayudawordpress.com/protege-tu-sesion-de-wordpress-con-ssl/">Protege tu sesión de WordPress con SSL</a></li>
<li><a href="http://ayudawordpress.com/seguridad-de-plugins-wordpress-la-regla-de-oro/">Seguridad de Plugins WordPress: La Regla de Oro</a></li>
</ul>
<h3>Como limpiar completamente tu sitio si ya ha sido afectado</h3>
<p>A grandes males grandes remedios. Si tu sitio ya ha sido infectado puedes estar seguro que pronto lo estará de nuevo a no ser que salga pronto una solución. Si quieres tener ciertas garantías igual es interesante que realices una operación de limpieza profunda:</p>
<ol>
<li>Exporta todo tu contenido mediante la utilidad de exportación de WordPress y guarda la carpeta <code>wp-content</code> así como cualquier otra que utilices de modo manual. Revisa tu tema, plugins y carpetas de uploads, etc, antes de darlos por seguros.</li>
<li>Revisa el fichero <code>wp-config.php</code> para eliminar cualquier posible inyección de código, cambia los permisos a 644 o, mucho mejor, carga un <code>wp-config.php</code> totalmente limpio.</li>
<li>Cambia todas las contraseñas: ftp, base de datos. Usa contraseñas fuertes, usando caracteres alfanuméricos y símbolos</li>
<li>Como el problema afecta a la base de datos hay que descartarla. Borra la actual y crea una nueva o, en su defecto, revisa cada una de las tablas</li>
<li>Borra todo el contenido de la instalación actual de WordPress (recuerda que antes has hecho backup)</li>
<li>Instala un WordPress limpio (última versión), usando la información de la nueva base de datos recién creada</li>
<li>Carga tu carpeta <code>wp-content</code> de nuevo, una vez comprobado que todo está limpio</li>
<li>Importa los posts de tu sitio que exportaste con la utilidad de importación de WordPress</li>
<li>Configura tu WordPress de manera segura siguiendo las instrucciones de los enlaces facilitados</li>
</ol>
<p>Y, bueno, aquí os dejo, sigo repasando sitios de clientes por si las moscas. Entretanto revisad el código fuente de vuestra instalación y hablad con vuestro hosting para ver si saben del asunto.</p>



¿Te gustó este post? ¡Compártelo!


	<a rel="nofollow"  href="http://bitacoras.com/anotaciones/http%3A%2F%2Fayudawordpress.com%2Finyeccion-de-codigo-en-wordpress-2-9-2%2F" title="Bitacoras.com"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/bitacoras.png" title="Bitacoras.com" alt="Bitacoras.com" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=http%3A%2F%2Fayudawordpress.com%2Finyeccion-de-codigo-en-wordpress-2-9-2%2F" title="TwitThis"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fayudawordpress.com%2Finyeccion-de-codigo-en-wordpress-2-9-2%2F&amp;t=La%20inyecci%C3%B3n%20de%20c%C3%B3digo%20NO%20es%20en%20WordPress%202.9.2" title="Facebook"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://meneame.net/submit.php?url=http%3A%2F%2Fayudawordpress.com%2Finyeccion-de-codigo-en-wordpress-2-9-2%2F" title="Meneame"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/meneame.png" title="Meneame" alt="Meneame" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fayudawordpress.com%2Finyeccion-de-codigo-en-wordpress-2-9-2%2F&amp;title=La%20inyecci%C3%B3n%20de%20c%C3%B3digo%20NO%20es%20en%20WordPress%202.9.2&amp;annotation=%0D%0A%0D%0ADesde%20hace%20d%C3%ADas%20estamos%20viendo%20noticias%20acerca%20de%20ataques%20a%20sitios%20actualizados%20a%20WordPress%202.9.2%2C%20o%20sea%2C%20la%20%C3%BAltima%20versi%C3%B3n%20estable%20y%2C%20tras%20una%20espera%20razonable%20por%20mi%20parte%20para%20ver%20por%20donde%20iban%20los%20tiros%2C%20y%20constatar%20esta%20misma%20tarde%20que%20e" title="Google Bookmarks"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fayudawordpress.com%2Finyeccion-de-codigo-en-wordpress-2-9-2%2F&amp;title=La%20inyecci%C3%B3n%20de%20c%C3%B3digo%20NO%20es%20en%20WordPress%202.9.2&amp;notes=%0D%0A%0D%0ADesde%20hace%20d%C3%ADas%20estamos%20viendo%20noticias%20acerca%20de%20ataques%20a%20sitios%20actualizados%20a%20WordPress%202.9.2%2C%20o%20sea%2C%20la%20%C3%BAltima%20versi%C3%B3n%20estable%20y%2C%20tras%20una%20espera%20razonable%20por%20mi%20parte%20para%20ver%20por%20donde%20iban%20los%20tiros%2C%20y%20constatar%20esta%20misma%20tarde%20que%20e" title="del.icio.us"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fayudawordpress.com%2Finyeccion-de-codigo-en-wordpress-2-9-2%2F&amp;title=La%20inyecci%C3%B3n%20de%20c%C3%B3digo%20NO%20es%20en%20WordPress%202.9.2" title="Live"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fayudawordpress.com%2Finyeccion-de-codigo-en-wordpress-2-9-2%2F" title="Technorati"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fayudawordpress.com%2Finyeccion-de-codigo-en-wordpress-2-9-2%2F&amp;title=La%20inyecci%C3%B3n%20de%20c%C3%B3digo%20NO%20es%20en%20WordPress%202.9.2&amp;body=%0D%0A%0D%0ADesde%20hace%20d%C3%ADas%20estamos%20viendo%20noticias%20acerca%20de%20ataques%20a%20sitios%20actualizados%20a%20WordPress%202.9.2%2C%20o%20sea%2C%20la%20%C3%BAltima%20versi%C3%B3n%20estable%20y%2C%20tras%20una%20espera%20razonable%20por%20mi%20parte%20para%20ver%20por%20donde%20iban%20los%20tiros%2C%20y%20constatar%20esta%20misma%20tarde%20que%20e" title="Ping.fm"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.wikio.com/vote?url=http%3A%2F%2Fayudawordpress.com%2Finyeccion-de-codigo-en-wordpress-2-9-2%2F" title="Wikio"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/wikio.png" title="Wikio" alt="Wikio" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/getpf?url=http%3A%2F%2Fayudawordpress.com%2Finyeccion-de-codigo-en-wordpress-2-9-2%2F" title="Turn this article into a PDF!"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/pdf.png" title="Turn this article into a PDF!" alt="Turn this article into a PDF!" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=La%20inyecci%C3%B3n%20de%20c%C3%B3digo%20NO%20es%20en%20WordPress%202.9.2&amp;body=http%3A%2F%2Fayudawordpress.com%2Finyeccion-de-codigo-en-wordpress-2-9-2%2F" title="E-mail this story to a friend!"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fayudawordpress.com%2Finyeccion-de-codigo-en-wordpress-2-9-2%2F" title="Print this article!"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print this article!" alt="Print this article!" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AyudaWordpress?a=g9XQM4AcyVs:2RFiXwtI5q0:Dsqc8YHEA1Y"><img src="http://feeds.feedburner.com/~ff/AyudaWordpress?i=g9XQM4AcyVs:2RFiXwtI5q0:Dsqc8YHEA1Y" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AyudaWordpress/~4/g9XQM4AcyVs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/AyudaWordpress/~3/g9XQM4AcyVs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 sin misterios</title>
		<link>http://feedproxy.google.com/~r/AyudaWordpress/~3/GhU2jtfVDN4/</link>
		<comments>http://feedproxy.google.com/~r/AyudaWordpress/~3/GhU2jtfVDN4/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 15:45:20 +0000</pubDate>
		<dc:creator>planetawordpress</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Experto]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[programación]]></category>
		<category><![CDATA[Tutoriales / Trucos]]></category>

		<guid isPermaLink="false">http://ayudawordpress.com/?p=7702</guid>
		<description><![CDATA[Si quieres saber las novedades de HTML5 y como afectará, incluso cuando se espera soporte por parte de todos los navegadores, esta presentación te va a interesar … 

Visto en TOJ



¿Te gustó este post? ¡Compártelo!


	
	
	
	
	
	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p>Si quieres saber las novedades de <strong>HTML5</strong> y como afectará, incluso cuando se espera soporte por parte de todos los navegadores, esta presentación te va a interesar … </p>
<p><object width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=html5-100404164316-phpapp01&#038;stripped_title=the-future-of-the-web-html5" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=html5-100404164316-phpapp01&#038;stripped_title=the-future-of-the-web-html5" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></p>
<p>Visto en <a href="http://mindymcadams.com/tojou/2010/html5-demystified/">TOJ</a></p>



¿Te gustó este post? ¡Compártelo!


	<a rel="nofollow"  href="http://bitacoras.com/anotaciones/http%3A%2F%2Fayudawordpress.com%2Fhtml5-sin-misterios%2F" title="Bitacoras.com"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/bitacoras.png" title="Bitacoras.com" alt="Bitacoras.com" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=http%3A%2F%2Fayudawordpress.com%2Fhtml5-sin-misterios%2F" title="TwitThis"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fayudawordpress.com%2Fhtml5-sin-misterios%2F&amp;t=HTML5%20sin%20misterios" title="Facebook"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://meneame.net/submit.php?url=http%3A%2F%2Fayudawordpress.com%2Fhtml5-sin-misterios%2F" title="Meneame"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/meneame.png" title="Meneame" alt="Meneame" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fayudawordpress.com%2Fhtml5-sin-misterios%2F&amp;title=HTML5%20sin%20misterios&amp;annotation=Si%20quieres%20saber%20las%20novedades%20de%20HTML5%20y%20como%20afectar%C3%A1%2C%20incluso%20cuando%20se%20espera%20soporte%20por%20parte%20de%20todos%20los%20navegadores%2C%20esta%20presentaci%C3%B3n%20te%20va%20a%20interesar%20%E2%80%A6%C2%A0%0D%0A%0D%0A%0D%0A%0D%0AVisto%20en%20TOJ" title="Google Bookmarks"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fayudawordpress.com%2Fhtml5-sin-misterios%2F&amp;title=HTML5%20sin%20misterios&amp;notes=Si%20quieres%20saber%20las%20novedades%20de%20HTML5%20y%20como%20afectar%C3%A1%2C%20incluso%20cuando%20se%20espera%20soporte%20por%20parte%20de%20todos%20los%20navegadores%2C%20esta%20presentaci%C3%B3n%20te%20va%20a%20interesar%20%E2%80%A6%C2%A0%0D%0A%0D%0A%0D%0A%0D%0AVisto%20en%20TOJ" title="del.icio.us"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fayudawordpress.com%2Fhtml5-sin-misterios%2F&amp;title=HTML5%20sin%20misterios" title="Live"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fayudawordpress.com%2Fhtml5-sin-misterios%2F" title="Technorati"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fayudawordpress.com%2Fhtml5-sin-misterios%2F&amp;title=HTML5%20sin%20misterios&amp;body=Si%20quieres%20saber%20las%20novedades%20de%20HTML5%20y%20como%20afectar%C3%A1%2C%20incluso%20cuando%20se%20espera%20soporte%20por%20parte%20de%20todos%20los%20navegadores%2C%20esta%20presentaci%C3%B3n%20te%20va%20a%20interesar%20%E2%80%A6%C2%A0%0D%0A%0D%0A%0D%0A%0D%0AVisto%20en%20TOJ" title="Ping.fm"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.wikio.com/vote?url=http%3A%2F%2Fayudawordpress.com%2Fhtml5-sin-misterios%2F" title="Wikio"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/wikio.png" title="Wikio" alt="Wikio" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/getpf?url=http%3A%2F%2Fayudawordpress.com%2Fhtml5-sin-misterios%2F" title="Turn this article into a PDF!"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/pdf.png" title="Turn this article into a PDF!" alt="Turn this article into a PDF!" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=HTML5%20sin%20misterios&amp;body=http%3A%2F%2Fayudawordpress.com%2Fhtml5-sin-misterios%2F" title="E-mail this story to a friend!"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fayudawordpress.com%2Fhtml5-sin-misterios%2F" title="Print this article!"><img src="http://ayudawordpress.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print this article!" alt="Print this article!" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AyudaWordpress?a=GhU2jtfVDN4:vPUwmoNcZlc:Dsqc8YHEA1Y"><img src="http://feeds.feedburner.com/~ff/AyudaWordpress?i=GhU2jtfVDN4:vPUwmoNcZlc:Dsqc8YHEA1Y" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AyudaWordpress/~4/GhU2jtfVDN4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/AyudaWordpress/~3/GhU2jtfVDN4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
