<?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>Bufa Webmaster &#187; orden</title>
	<atom:link href="http://www.bufa.es/tag/orden/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bufa.es</link>
	<description>Recursos web en español</description>
	<lastBuildDate>Tue, 31 Jan 2012 23:47:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WordPress: ordenar posts en función del número &#8220;me gusta&#8221; de Facebook</title>
		<link>http://www.bufa.es/wordpress-ordenar-posts-facebook/</link>
		<comments>http://www.bufa.es/wordpress-ordenar-posts-facebook/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 20:13:26 +0000</pubDate>
		<dc:creator>Jorge Maiden</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Recursos]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[me gusta]]></category>
		<category><![CDATA[orden]]></category>

		<guid isPermaLink="false">http://www.bufa.es/?p=1249</guid>
		<description><![CDATA[En WordPress podemos ordenar nuestras entradas (post) por fecha, título, etc&#8230; pero imaginaros que teneis un botón de &#8220;me gusta&#8221; para cada post, y quereis ordenar el listado por el número de &#8220;me gusta&#8221; de facebook de cada post&#8230; En ...]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.bufa.es/wp-content/uploads/2011/07/wordpress-facebook-megusta.jpg" alt="" title="wordpress facebook me gusta" width="648" height="200" class="alignnone size-full wp-image-1255" /></p>
<p>En WordPress podemos <strong>ordenar</strong> nuestras entradas (post) por fecha, título, etc&#8230; pero imaginaros que teneis un botón de &#8220;<strong>me gusta</strong>&#8221; para cada post, y quereis ordenar el listado por el número de &#8220;me gusta&#8221; de facebook de cada post&#8230;</p>
<p>En primer lugar, necesitamos un lugar para almacenar el número de &#8220;me gusta&#8221; de cada post.</p>
<p>Abrimos el archivo &#8220;functions.php&#8221; de nuestro tema y incluimos la siguiente función:</p>
<div class="codecolorer-container php railscasts" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">function</span> inserta_customfield_facebook<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post_ID</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp;<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>wp_is_post_revision<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post_ID</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; add_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post_ID</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'numero_megusta'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'0'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp;<span style="color: #009900;">&#125;</span><br />
<span style="color: #009900;">&#125;</span><br />
add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'publish_page'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'inserta_customfield_facebook'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'publish_post'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'inserta_customfield_facebook'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></div>
<p>Con este código creamos automáticamente un campo personalizado (custom field) llamado &#8220;numero_megusta&#8221; que almacenara el número total me gusta de ese post.</p>
<p>A continuación, añadimos (si no lo teneis ya) el botón &#8220;me gusta&#8221; de facebook:</p>
<div class="codecolorer-container html4strict railscasts" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/iframe.html"><span style="color: #000000; font-weight: bold;">iframe</span></a> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.facebook.com/widgets/like.php?href=&lt;?php the_permalink(); ?&gt;</span></span><span style="color: #ddbb00;">&amp;amp;</span>layout=button_count<span style="color: #ddbb00;">&amp;amp;</span>show_faces=false<span style="color: #ddbb00;">&amp;amp;</span>width=100<span style="color: #ddbb00;">&amp;amp;</span>action=like<span style="color: #ddbb00;">&amp;amp;</span>font<span style="color: #ddbb00;">&amp;amp;</span>colorscheme=light<span style="color: #ddbb00;">&amp;amp;</span>height=20<span style="color: #ddbb00;">&amp;amp;</span>locale=es_ES&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; allowTransparency=&quot;true&quot;&gt;<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/iframe.html"><span style="color: #000000; font-weight: bold;">iframe</span></a>&gt;</span></div></div>
<p>Lo siguiente que necesitamos para comprobar cuántos &#8220;me gusta&#8221; tiene ese post y actualizar el valor del campo personalizado que hemos creado al principio (numero_megusta).</p>
<p>Copia y pega uno de los 2 siguientes códigos en el header.php de tu tema.</p>
<p>a) Si no utilizas permalinks (ej. miweb.com/p?=144) en la urls de tu web wordpress, copia y pega este código:</p>
<div class="codecolorer-container php railscasts" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$wp_query</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$idpost</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wp_query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$data</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/file_get_contents"><span style="color: #990000;">file_get_contents</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'http://graph.facebook.com/?id='</span><span style="color: #339933;">.</span>bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'url'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'?p='</span><span style="color: #339933;">.</span><span style="color: #000088;">$idpost</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$json</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$data</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$obj</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/json_decode"><span style="color: #990000;">json_decode</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$json</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$like_no</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$obj</span><span style="color: #339933;">-&gt;</span><span style="color: #009900;">&#123;</span><span style="color: #0000ff;">'shares'</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$meta_values</span> <span style="color: #339933;">=</span> get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$idpost</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'numero_megusta'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$like_no</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$meta_values</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp;<span style="color: #666666; font-style: italic;">// paso</span><br />
<span style="color: #009900;">&#125;</span><span style="color: #b1b100;">elseif</span> <span style="color: #009900;">&#40;</span><a href="http://www.php.net/empty"><span style="color: #990000;">empty</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$meta_values</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp;add_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$idpost</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'numero_megusta'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$like_no</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp;update_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$idpost</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'numero_megusta'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$like_no</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp;update_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$idpost</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'numero_megusta'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$like_no</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span></div></div>
<p>b) Si utilizas permalinks (ej. miweb.com/mi-pagina) con url amigables, copia y pega este código:</p>
<div class="codecolorer-container php railscasts" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$wp_query</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$paginaweb</span> <span style="color: #339933;">=</span> get_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$idpost</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wp_query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$data</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/file_get_contents"><span style="color: #990000;">file_get_contents</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'http://graph.facebook.com/?id='</span><span style="color: #339933;">.</span><span style="color: #000088;">$paginaweb</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$json</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$data</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$obj</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/json_decode"><span style="color: #990000;">json_decode</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$json</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$like_no</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$obj</span><span style="color: #339933;">-&gt;</span><span style="color: #009900;">&#123;</span><span style="color: #0000ff;">'shares'</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$meta_values</span> <span style="color: #339933;">=</span> get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$idpost</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'numero_megusta'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$like_no</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$meta_values</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp;<span style="color: #666666; font-style: italic;">// paso</span><br />
<span style="color: #009900;">&#125;</span><span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><a href="http://www.php.net/empty"><span style="color: #990000;">empty</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$meta_values</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp;add_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$idpost</span> <span style="color: #339933;">,</span> <span style="color: #0000ff;">'numero_megusta'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$like_no</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp;update_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$idpost</span> <span style="color: #339933;">,</span> <span style="color: #0000ff;">'numero_megusta'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$like_no</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp;update_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$idpost</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'numero_megusta'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$like_no</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span></div></div>
<p>Ahora ya solo falta hacer el &#8220;loop&#8221; de nuestros post (por ejemplo en nuestro index.php, archive.php, etc&#8230;)</p>
<div class="codecolorer-container php railscasts" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;?php</span><br />
<span style="color: #000088;">$query_facebook</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> WP_Query<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$query_facebook</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'posts_per_page=20&amp;meta_key=numero_megusta&amp;orderby=meta_value&amp;order=desc&amp;paged='</span><span style="color: #339933;">.</span><span style="color: #000088;">$paged</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$query_facebook</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">have_posts</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000088;">$query_facebook</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">the_post</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span><br />
<br />
&lt;div class=&quot;post&quot; id=&quot;post-<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_ID<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;<br />
<br />
&nbsp; &nbsp; &lt;h2&gt;&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/a&gt;&lt;/h2&gt;<br />
&nbsp; &nbsp; &lt;p&gt;Fecha: <span style="color: #000000; font-weight: bold;">&lt;?php</span> the_time<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'j M Y'</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/p&gt;<br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">&lt;?php</span> the_excerpt<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span><br />
<br />
&nbsp; &nbsp; &lt;div class=&quot;boton_facebook&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;iframe src=&quot;http://www.facebook.com/widgets/like.php?href=<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&amp;amp;layout=button_count&amp;amp;show_faces=false&amp;amp;width=100&amp;amp;action=like&amp;amp;font&amp;amp;colorscheme=light&amp;amp;height=20&amp;amp;locale=es_ES&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;<br />
&nbsp; &nbsp; &lt;/div&gt;<br />
<br />
&lt;/div&gt;<br />
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endwhile</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></div></div>
<p>* Adaptar el loop a los campos de vuestros diseños</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bufa.es/wordpress-ordenar-posts-facebook/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Ordenar registros mysql con jquery</title>
		<link>http://www.bufa.es/ordenar-registros-jquery-mysql/</link>
		<comments>http://www.bufa.es/ordenar-registros-jquery-mysql/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 18:18:04 +0000</pubDate>
		<dc:creator>Jorge Maiden</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[orden]]></category>

		<guid isPermaLink="false">http://www.bufa.es/?p=107</guid>
		<description><![CDATA[Método muy cómodo (para gestionar el panel de control de nuestra web o cms) para ordenar determinados registros de una base de datos mysql. El método es pinchar y arrastrar el item que quieres posicionar arriba o abajo, situándolo en su ...]]></description>
			<content:encoded><![CDATA[<p>Método muy cómodo (para gestionar el panel de control de nuestra web o cms) para ordenar determinados registros de una base de datos mysql. El método es <strong>pinchar y arrastrar</strong> el item que quieres posicionar arriba o abajo, situándolo en su lugar correspondiente, y automaticamente se realizará un UPDATE de ese registro, con la nueva posición en la tabla mysql.</p>
<p><a class="boton descargar" href="http://www.bufa.es/wp-content/uploads/2009/08/jquery-sortable-with-ajax.zip" target="_blank">DESCARGAR</a> <a class="boton demo" href="http://www.wil-linssen.com/demo/jquery-sortable-ajax/" target="_blank">DEMO</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bufa.es/ordenar-registros-jquery-mysql/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

