<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Resaltando la sintáxis de códigos en Wordpress</title>
	<atom:link href="http://blog.jorgeivanmeza.com/2009/03/resaltando-la-sintaxis-de-codigos-en-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jorgeivanmeza.com/2009/03/resaltando-la-sintaxis-de-codigos-en-wordpress/</link>
	<description>The Fire Within Me: &#34;knowledge will set you free&#34;</description>
	<lastBuildDate>Sat, 20 Feb 2010 14:28:31 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: jimezam</title>
		<link>http://blog.jorgeivanmeza.com/2009/03/resaltando-la-sintaxis-de-codigos-en-wordpress/comment-page-1/#comment-4398</link>
		<dc:creator>jimezam</dc:creator>
		<pubDate>Mon, 08 Jun 2009 15:18:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.jorgeivanmeza.com/blog/?p=1591#comment-4398</guid>
		<description>Si por alguna extraña razón Wordpress no está utilizando jQuery sino Prototype, como es mi caso en este momento, reemplace el siguiente código jQuery:

&lt;pre&gt;
jQuery(&#039;pre&#039;).each(function () {
        jQuery(this).attr(&#039;name&#039;, &#039;code&#039;);
});
&lt;/pre&gt;

Con el siguiente código Prototype.

&lt;pre&gt;
$$(&#039;pre&#039;).each(function (element, index) {
        element.writeAttribute(&#039;name&#039;, &#039;code&#039;);
});
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Si por alguna extraña razón Wordpress no está utilizando jQuery sino Prototype, como es mi caso en este momento, reemplace el siguiente código jQuery:</p>
<pre>
jQuery('pre').each(function () {
        jQuery(this).attr('name', 'code');
});
</pre>
<p>Con el siguiente código Prototype.</p>
<pre>
$$('pre').each(function (element, index) {
        element.writeAttribute('name', 'code');
});
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: jimezam</title>
		<link>http://blog.jorgeivanmeza.com/2009/03/resaltando-la-sintaxis-de-codigos-en-wordpress/comment-page-1/#comment-4397</link>
		<dc:creator>jimezam</dc:creator>
		<pubDate>Mon, 08 Jun 2009 15:09:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.jorgeivanmeza.com/blog/?p=1591#comment-4397</guid>
		<description>Para que este &#039;hack&#039; funcione es necesario que el tema cierre el &#039;footer&#039; correctamente, es decir, deberá incluír la siguiente instrucción justo antes de cerrar el BODY y el HTML.

&lt;pre&gt;
&lt; ?php wp_footer(); ?&gt;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Para que este &#8216;hack&#8217; funcione es necesario que el tema cierre el &#8216;footer&#8217; correctamente, es decir, deberá incluír la siguiente instrucción justo antes de cerrar el BODY y el HTML.</p>
<pre>
< ?php wp_footer(); ?>
</pre>
]]></content:encoded>
	</item>
</channel>
</rss>
