<?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>BlogsHill Network</title>
	<atom:link href="http://www.blogshill.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blogshill.com</link>
	<description>BlogsHill Network Red de Blogs y Comercio de Dominios</description>
	<lastBuildDate>Wed, 18 May 2011 22:34:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Insertar código de conversiones Adwords en WordPress</title>
		<link>http://www.blogshill.com/insertar-codigo-de-conversiones-adwords-en-wordpress/</link>
		<comments>http://www.blogshill.com/insertar-codigo-de-conversiones-adwords-en-wordpress/#comments</comments>
		<pubDate>Wed, 18 May 2011 22:34:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorial Wordpress]]></category>
		<category><![CDATA[adwords wordpress]]></category>
		<category><![CDATA[codigo conversion]]></category>
		<category><![CDATA[conversion adwords]]></category>
		<category><![CDATA[conversion usuarios]]></category>

		<guid isPermaLink="false">http://www.blogshill.com/?p=240</guid>
		<description><![CDATA[<p><strong>Como puedo insertar mi código de conversiones de Adwords en WordPress?</strong> Esta es la pregunta que me he estado realizando estos últimos días, queria saber la conversión de usuarios procedentes de la campaña de Adwords que acceden a ciertas paginas de mi sitio y saber que porcentaje de ellos se convertian en clientes. Excelente aplicación&#8230; <a href="http://www.blogshill.com/insertar-codigo-de-conversiones-adwords-en-wordpress/" class="read_more">Leer mas</a></p>]]></description>
			<content:encoded><![CDATA[<p><strong>Como puedo insertar mi código de conversiones de Adwords en WordPress?</strong> Esta es la pregunta que me he estado realizando estos últimos días, queria saber la conversión de usuarios procedentes de la campaña de Adwords que acceden a ciertas paginas de mi sitio y saber que porcentaje de ellos se convertian en clientes. Excelente aplicación para controlar y poder afinar tus gastos en publicidad, verdad?</p>
<p>Existen varios plugins que te permiten inyectar código en paginas y post, no están mal, aunque si puedes hacerlo a mano..<strong>por que utilizar un plugin?</strong> Paso a explicar el proceso, para hacerlo nada mejor que exponerlo con un ejemplo.</p>
<p>Para empezar ve a la carpeta de tu theme y descarga el archivo <em>page.php</em>, abre el archivo con tu editor de código favorito y en la parte superior del archivo incluye esta línea:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #666666; font-style: italic;">/* Template Name: conversion template */</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>Copia el <strong>código de conversión</strong> que previamente has creado en Adwords y pégalo dentro del archivo, puedes ver donde lo he puesto yo en el archivo que he creado para alojar el código de conversión. Puedes tomarlo como ejemplo.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #666666; font-style: italic;">/* Template Name: conversion template */</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> get_header<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;div class=&quot;content&quot;&gt;
		&lt;div class=&quot;main ins&quot;&gt;
&nbsp;
		<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>have_posts<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: #b1b100;">while</span> <span style="color: #009900;">&#40;</span>have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> the_post<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>	
&nbsp;
			&lt;div class=&quot;left&quot;&gt;
&nbsp;
				&lt;div class=&quot;title&quot;&gt;
					&lt;h2&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;/h2&gt;
					&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
				&lt;/div&gt;
&nbsp;
				&lt;div class=&quot;product&quot;&gt;
					<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_content<span style="color: #009900;">&#40;</span>__<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Read more &amp;raquo;'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'cp'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
					<span style="color: #000000; font-weight: bold;">&lt;?php</span> edit_post_link<span style="color: #009900;">&#40;</span>__<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Edit Page'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'cp'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&lt;p&gt;'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&lt;/p&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
					&lt;!-- Codigo de conversiones Adwords en Wordpress --&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
/* &lt;![CDATA[ */
var google_conversion_id = tu_id;
var google_conversion_language = &quot;es&quot;;
var google_conversion_format = &quot;1&quot;;
var google_conversion_color = &quot;ffffff&quot;;
var google_conversion_label = &quot;conversion_label&quot;;
var google_conversion_value = 0;
if (0,20) {
  google_conversion_value = 0,20;
}
/* ]]&gt; */
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.googleadservices.com/pagead/conversion.js&quot;&gt;
&lt;/script&gt;
&lt;noscript&gt;
&lt;div style=&quot;display:inline;&quot;&gt;
&lt;img height=&quot;1&quot; width=&quot;1&quot; style=&quot;border-style:none;&quot; alt=&quot;&quot; src=&quot;http://www.googleadservices.com/pagead/conversion/blaba/?value=0,20&amp;label=blablabla&amp;guid=ON&amp;script=0&quot;/&gt;
&lt;/div&gt;
&lt;/noscript&gt;
				&lt;/div&gt;
&nbsp;
			&lt;/div&gt;
&nbsp;
		<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endwhile</span><span style="color: #339933;">;</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>		
&nbsp;
		<span style="color: #000000; font-weight: bold;">&lt;?php</span> get_sidebar<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>	
&nbsp;
			&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
&nbsp;
		&lt;/div&gt;
	&lt;/div&gt;
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> get_footer<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></pre></td></tr></table></div>

<p>Una vez editado y renombrado el archivo súbelo de nuevo a la carpeta de tu theme, ve al editor de páginas de WordPress y crea o edita la página que deseas hacer servir para el seguimiento de conversiones. En la parte derecha del editor puedes ver el widget &#8220;<em>Atributos de página</em>&#8221; donde debes escoger la plantilla que has creado anteriormente, guardas la página y listo&#8230;<strong>ya tienes tu página configurada para alojar el código de conversiones de Adwords!!</strong></p>
<p>Espero esto os sirva de ayuda.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogshill.com/insertar-codigo-de-conversiones-adwords-en-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSS3 Generator con soporte de Internet Explorer CSS3</title>
		<link>http://www.blogshill.com/css3-generator-con-soporte-de-internet-explorer-css3/</link>
		<comments>http://www.blogshill.com/css3-generator-con-soporte-de-internet-explorer-css3/#comments</comments>
		<pubDate>Tue, 17 May 2011 10:19:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Novedades]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[css3 generator]]></category>
		<category><![CDATA[generador css3]]></category>
		<category><![CDATA[internet explorer css3]]></category>
		<category><![CDATA[soporte internet explorer]]></category>

		<guid isPermaLink="false">http://www.blogshill.com/?p=233</guid>
		<description><![CDATA[<p>Buscando un <strong>generador CSS3</strong> me he encontrado con esta maravilla <strong><a title="CSS3 GENERATOR" href="http://www.css3.me/">CSS3 GENERATOR</a></strong>. Con esta herramienta online puedes crear tus proyectos con CSS3 ya que es completamente personalizable para adaptarse a tus necesidades e incorpora <strong>soporte de Internet Explorer CSS3</strong>.</p>
<p>Lo mejor será que lo pruebes tu mismo&#8230;</p>
<p><a href="http://www.css3.me/"><img class="aligncenter size-medium wp-image-234" title="css3 generator" src="http://www.blogshill.com/wp-content/uploads/2011/05/css3-300x190.jpg" alt="" width="300" height="190" /></a></p>
]]></description>
			<content:encoded><![CDATA[<p>Buscando un <strong>generador CSS3</strong> me he encontrado con esta maravilla <strong><a title="CSS3 GENERATOR" href="http://www.css3.me/">CSS3 GENERATOR</a></strong>. Con esta herramienta online puedes crear tus proyectos con CSS3 ya que es completamente personalizable para adaptarse a tus necesidades e incorpora <strong>soporte de Internet Explorer CSS3</strong>.</p>
<p>Lo mejor será que lo pruebes tu mismo&#8230;</p>
<p><a href="http://www.css3.me/"><img class="aligncenter size-medium wp-image-234" title="css3 generator" src="http://www.blogshill.com/wp-content/uploads/2011/05/css3-300x190.jpg" alt="" width="300" height="190" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogshill.com/css3-generator-con-soporte-de-internet-explorer-css3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Filter to avoid duplicate content</title>
		<link>http://www.blogshill.com/filter-avoid-duplicate-content-wordpress/</link>
		<comments>http://www.blogshill.com/filter-avoid-duplicate-content-wordpress/#comments</comments>
		<pubDate>Mon, 09 May 2011 23:05:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[classifieds site]]></category>
		<category><![CDATA[filter classifieds]]></category>
		<category><![CDATA[filter duplicate content]]></category>
		<category><![CDATA[filter wordpress]]></category>

		<guid isPermaLink="false">http://www.blogshill.com/?p=222</guid>
		<description><![CDATA[<p>I applied a filter in my classifieds site <a title="Pisos Alquiler" href="http://www.pisos-alquiler.com/">Pisos Alquiler</a>, <strong>this filter makes a comparison of all ads to avoid duplicate content</strong>. The operation of this filter is very simple, <strong>compare the title of the ad, email and user name of the advertiser and the ad content with the rest of ads</strong>&#8230; <a href="http://www.blogshill.com/filter-avoid-duplicate-content-wordpress/" class="read_more">Leer mas</a></p>]]></description>
			<content:encoded><![CDATA[<p>I applied a filter in my classifieds site <a title="Pisos Alquiler" href="http://www.pisos-alquiler.com/">Pisos Alquiler</a>, <strong>this filter makes a comparison of all ads to avoid duplicate content</strong>. The operation of this filter is very simple, <strong>compare the title of the ad, email and user name of the advertiser and the ad content with the rest of ads already published</strong>. When the filter detects that the <strong>ad is duplicated</strong>, remove it and sent directly the ad to the trash. However, if the filter detects that the <strong>ad is genuine</strong>, the filter also publishes the ad automatically.</p>
<p>Needless to say, the ad to review should remain as a <strong>Draft</strong> ..</p>
<p>Using the <strong>WordPress cron feature</strong> this filter can be run every 5 minutes &#8220;for example&#8221; and you can automate the process.</p>
<p>In my case in my Hostgator Cpanel I created this cron job, you can take it as an example. You only need to replace &#8220;<strong>username</strong>&#8221; for your username.</p>
<p>Minute: */5  ;Hour: * ;Day: * ;Month: * ;Day of week: *</p>
<p>cd /home/<em><strong>username</strong></em>/public_html/; filter.php</p>
<p>I think this may be of use to some of you if you manage them <strong>classified ad sites with WordPress or auto-generated content</strong> &#8230; or commonly called &#8220;<strong>AutoBlogging</strong>&#8220;.</p>
<p><em>Instructions:</em></p>
<p>Copy the following code, call <strong>filter.php</strong>, upload it to the root directory with the <strong>rest of the WordPress installation files</strong>, published several articles <strong>saved as Draft,</strong> including several duplicates. You&#8217;ll see the result &#8230; <strong>you&#8217;ll love!</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;!--</span>?php
<span style="color: #b1b100;">require_once</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;wp-load.php&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
query_posts<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;post_status=draft&amp;#038;orderby=date&amp;#038;order=DESC&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$table_prefix</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">// The Loop</span>
<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span> have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> the_post<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #666666; font-style: italic;">//Process each draft post here</span>
	<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$post</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">---&gt;</span><span style="color: #004000;">post_status</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;draft&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$current_ID</span> <span style="color: #339933;">=</span> get_the_ID<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$current_title</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_title</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$current_content</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_content</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$current_email</span> <span style="color: #339933;">=</span> get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$current_ID</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'email'</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>
		<span style="color: #000088;">$current_postname</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_name</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Processing draft post: &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$current_ID</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot; - &quot;</span><span style="color: #339933;">;</span>
		the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;...&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #666666; font-style: italic;">// Create a new instance</span>
		<span style="color: #666666; font-style: italic;">// Search for published posts with same content and same email</span>
		<span style="color: #000088;">$sql</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;select * from &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$table_prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;posts as posts LEFT JOIN &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$table_prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;postmeta as postmeta ON posts.ID=postmeta.post_id where post_content = '&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$current_content</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;' and post_status = 'publish' and meta_key='email' and meta_value='&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$current_email</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;'&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_query</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$sql</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$deletion</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$row</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_fetch_array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$result</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot; found a similar post content and email custom field. Deleting ...&quot;</span><span style="color: #339933;">;</span>
			wp_delete_post<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$current_ID</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot; done&quot;</span><span style="color: #339933;">;</span>
			<span style="color: #000088;">$deletion</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">break</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #000088;">$deletion</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot; not found any similar one. Publishing ...&quot;</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$current_postname</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
				<span style="color: #000088;">$current_postname</span> <span style="color: #339933;">=</span> sanitize_title<span style="color: #009900;">&#40;</span><span style="color: #000088;">$current_title</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #009900;">&#125;</span>
			<span style="color: #000088;">$postUpdate</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #000088;">$postUpdate</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'ID'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$current_ID</span><span style="color: #339933;">;</span>
			<span style="color: #000088;">$postUpdate</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'post_name'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$current_postname</span><span style="color: #339933;">;</span>
			wp_update_post<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$postUpdate</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			wp_publish_post<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$current_ID</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot; done&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
		<span style="color: #990000;">mysql_free_result</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$result</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #009900;">&#125;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">ob_flush</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">flush</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">endwhile</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// Reset Query</span>
wp_reset_query<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.blogshill.com/filter-avoid-duplicate-content-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Filtro para evitar contenido duplicado</title>
		<link>http://www.blogshill.com/filtro-evitar-contenido-duplicado-wordpress/</link>
		<comments>http://www.blogshill.com/filtro-evitar-contenido-duplicado-wordpress/#comments</comments>
		<pubDate>Mon, 09 May 2011 09:30:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[contenido duplicado]]></category>
		<category><![CDATA[filtro campos personalizados]]></category>
		<category><![CDATA[filtro wordpress]]></category>
		<category><![CDATA[wordpress duplicado]]></category>

		<guid isPermaLink="false">http://www.blogshill.com/?p=216</guid>
		<description><![CDATA[<p>He aplicado un filtro en mi sitio de <a title="Contratos Alquiler" href="http://www.pisos-alquiler.com/">pisos en alquiler</a>, <strong>este filtro hace una comparación de todos los anuncios publicados para evitar tener contenido duplicado</strong>. Su funcionamiento es muy simple, <strong>realiza una comparación de varios campos personalizados como el título de los anuncios publicados junto a  la descripción y email del</strong>&#8230; <a href="http://www.blogshill.com/filtro-evitar-contenido-duplicado-wordpress/" class="read_more">Leer mas</a></p>]]></description>
			<content:encoded><![CDATA[<p>He aplicado un filtro en mi sitio de <a title="Contratos Alquiler" href="http://www.pisos-alquiler.com/">pisos en alquiler</a>, <strong>este filtro hace una comparación de todos los anuncios publicados para evitar tener contenido duplicado</strong>. Su funcionamiento es muy simple, <strong>realiza una comparación de varios campos personalizados como el título de los anuncios publicados junto a  la descripción y email del anunciante,</strong> si estos parámetros coinciden con otro anuncio ya publicado este pasa de Borrador a la papelera directamente y si el filtro considera que es un anuncio original lo publica y listo. Obvio decir que <strong>el anuncio a revisar debe permanecer como Borrador</strong>..</p>
<p>Utilizando la <strong>función cron de WordPress</strong> este filtro se puede ejecutar cada 5 minutos &#8220;por ejemplo&#8221; pudiendo así automatizar el proceso.</p>
<p>En mi caso y mediante el Cpanel de Hostgator he creado esta tarea cron, puedes tomarla como ejemplo. Tan solo debes sustituir &#8220;usuario&#8221; por tu nombre de usuario.</p>
<p>Minuto: */5  ;Hora: * ;Día: * ;Mes: * ;Día de semana: *</p>
<p>cd /home<strong>/<em>usuario</em>/</strong>public_html/; filter.php</p>
<p>Creo que esto puede ser de utilizad para algunos de vosotros si gestionáis sitios de <strong>anuncios clasificados con WordPress</strong> o porque no&#8230;de contenido auto generado o comúnmente llamado &#8220;<strong>AutoBlogging</strong>&#8220;.</p>
<p>Copia el siguiente código, llámalo <strong>filter.php</strong>, súbelo a la <strong>raíz del directorio</strong> &#8220;junto al resto de archivos de instalación de WordPress&#8221;, publica varios artículos guardados <strong>como Borrador</strong> &#8230; entre ellos varios duplicados. Ya verás el resultado&#8230;<strong>te va a encantar!!</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;!--</span>?php
<span style="color: #b1b100;">require_once</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;wp-load.php&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
query_posts<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;post_status=draft&amp;#038;orderby=date&amp;#038;order=DESC&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$table_prefix</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">// The Loop</span>
<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span> have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> the_post<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #666666; font-style: italic;">//Process each draft post here</span>
	<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$post</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">---&gt;</span><span style="color: #004000;">post_status</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;draft&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$current_ID</span> <span style="color: #339933;">=</span> get_the_ID<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$current_title</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_title</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$current_content</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_content</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$current_email</span> <span style="color: #339933;">=</span> get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$current_ID</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'email'</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>
		<span style="color: #000088;">$current_postname</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_name</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Processing draft post: &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$current_ID</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot; - &quot;</span><span style="color: #339933;">;</span>
		the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;...&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #666666; font-style: italic;">// Create a new instance</span>
		<span style="color: #666666; font-style: italic;">// Search for published posts with same content and same email</span>
		<span style="color: #000088;">$sql</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;select * from &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$table_prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;posts as posts LEFT JOIN &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$table_prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;postmeta as postmeta ON posts.ID=postmeta.post_id where post_content = '&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$current_content</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;' and post_status = 'publish' and meta_key='email' and meta_value='&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$current_email</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;'&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_query</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$sql</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$deletion</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$row</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_fetch_array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$result</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot; found a similar post content and email custom field. Deleting ...&quot;</span><span style="color: #339933;">;</span>
			wp_delete_post<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$current_ID</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot; done&quot;</span><span style="color: #339933;">;</span>
			<span style="color: #000088;">$deletion</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">break</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #000088;">$deletion</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot; not found any similar one. Publishing ...&quot;</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$current_postname</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
				<span style="color: #000088;">$current_postname</span> <span style="color: #339933;">=</span> sanitize_title<span style="color: #009900;">&#40;</span><span style="color: #000088;">$current_title</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #009900;">&#125;</span>
			<span style="color: #000088;">$postUpdate</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #000088;">$postUpdate</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'ID'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$current_ID</span><span style="color: #339933;">;</span>
			<span style="color: #000088;">$postUpdate</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'post_name'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$current_postname</span><span style="color: #339933;">;</span>
			wp_update_post<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$postUpdate</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			wp_publish_post<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$current_ID</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot; done&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
		<span style="color: #990000;">mysql_free_result</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$result</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #009900;">&#125;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">ob_flush</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">flush</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">endwhile</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// Reset Query</span>
wp_reset_query<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.blogshill.com/filtro-evitar-contenido-duplicado-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>11 themes de WordPress para móviles</title>
		<link>http://www.blogshill.com/themes-wordpress-moviles/</link>
		<comments>http://www.blogshill.com/themes-wordpress-moviles/#comments</comments>
		<pubDate>Sat, 07 May 2011 08:24:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[theme moviles]]></category>
		<category><![CDATA[themes moviles]]></category>
		<category><![CDATA[wordpress movil]]></category>
		<category><![CDATA[wordpress themes]]></category>

		<guid isPermaLink="false">http://www.blogshill.com/?p=196</guid>
		<description><![CDATA[<p>Un número creciente de usuarios visitan nuestros sitios creados con WordPress utilizando su móvil por lo que tiene sentido invertir en un theme de móviles para su sitio web creado con WordPress, estos themes automáticamente proporcionan una gran experiencia para todos sus visitantes desde cualquiler aparato móvil.</p>
<p>Aquí están 15 de nuestros themes favoritos de&#8230; <a href="http://www.blogshill.com/themes-wordpress-moviles/" class="read_more">Leer mas</a></p>]]></description>
			<content:encoded><![CDATA[<p>Un número creciente de usuarios visitan nuestros sitios creados con WordPress utilizando su móvil por lo que tiene sentido invertir en un theme de móviles para su sitio web creado con WordPress, estos themes automáticamente proporcionan una gran experiencia para todos sus visitantes desde cualquiler aparato móvil.</p>
<p>Aquí están 15 de nuestros themes favoritos de móviles para WordPress</p>
<h2>DotMobi<img class="alignleft size-full wp-image-611" title="DotMobi" src="http://wpsmarts.com/wp-content/uploads/2011/04/20110409_110448.png" alt="" width="590" height="301" /></h2>
<p><strong><a href="http://themeforest.net/item/dotmobi-wordpress-theme-for-mobile-devices/full_screen_preview/123198?ref=Werlisa">Live demo</a> | <a href="http://themeforest.net/item/dotmobi-wordpress-theme-for-mobile-devices/123198?ref=Werlisa">Descargar theme</a></strong></p>
<h2>jQuery Mobile&nbsp;</p>
<p style="text-align: left;"><img class="alignleft size-full wp-image-606" title="jQuery Mobile" src="http://wpsmarts.com/wp-content/uploads/2011/04/hqmfwt-01.jpg" alt="" width="560" height="230" /></p>
</h2>
<p><strong><a href="http://www.webdevcat.com/themes">Demo</a>|<a href="http://www.webdevcat.com/downloads/jquerymobile">Descargar theme</a></strong></p>
<h2>WPtap Pages</h2>
<h2><strong><strong><img class="aligncenter size-full wp-image-609" title="WPtap Pages" src="http://wpsmarts.com/wp-content/uploads/2011/04/pages.png" alt="" width="515" height="225" /></strong></strong></h2>
<h2><strong> </strong></h2>
<p><strong><a href="https://www.e-junkie.com/ecom/gb.php?ii=693623&amp;c=ib&amp;aff=118178&amp;cl=103408">Live demo</a> | <a href="https://www.e-junkie.com/ecom/gb.php?ii=693623&amp;c=ib&amp;aff=118178&amp;cl=103408">Descargar theme</a></strong></p>
<h2><strong>Obox Mobile<img class="alignleft size-full wp-image-614" title="Obox Mobile" src="http://wpsmarts.com/wp-content/uploads/2011/04/20110409_110745.png" alt="" width="590" height="302" /></strong></h2>
<p><strong><a href="http://themeforest.net/item/obox-mobile-wordpress-mobile-framework/full_screen_preview/165736?ref=Werlisa">Live demo</a> | <a href="http://themeforest.net/item/obox-mobile-wordpress-mobile-framework/165736?ref=Werlisa">Descargar theme</a></strong></p>
<h2><strong>My Mobile Page V2<img class="alignleft size-full wp-image-620" title="My Mobile Page V2" src="http://wpsmarts.com/wp-content/uploads/2011/04/20110409_112237.png" alt="" width="590" height="301" /></strong></h2>
<p><strong><a href="http://themeforest.net/item/my-mobile-page-v2-wordpress-theme/full_screen_preview/165066?ref=Werlisa">Live demo</a> | <a href="http://themeforest.net/item/my-mobile-page-v2-wordpress-theme/165066?ref=Werlisa">Descargar theme</a></strong></p>
<h2><strong>iWorld<img class="alignleft size-full wp-image-623" title="iWorld" src="http://wpsmarts.com/wp-content/uploads/2011/04/20110409_122246.png" alt="" width="590" height="300" /></strong></h2>
<p><strong><a href="http://themeforest.net/item/iworld-mobile-wp-theme/full_screen_preview/112851?ref=Werlisa">Live demo</a> | <a href="http://themeforest.net/item/iworld-mobile-wp-theme/112851?ref=Werlisa">Descargar theme</a></strong></p>
<h2><strong>Mobius<img class="alignleft size-full wp-image-626" title="Mobius" src="http://wpsmarts.com/wp-content/uploads/2011/04/hqmfwt-05.jpg" alt="" width="560" height="230" /></strong></h2>
<p><strong> </strong></p>
<p style="text-align: left;"><strong><a href="http://www.mobilizetoday.com/wordpress-themes/preview/mobius/?view=mobile">Demo</a>|<a href="http://www.mobilizetoday.com/wordpress-themes/download/mobius">Descargar theme</a></strong></p>
<h2><strong>My Mobile Page<img class="alignleft size-full wp-image-628" title="My Mobile Page" src="http://wpsmarts.com/wp-content/uploads/2011/04/screenshot1.__large_preview.jpg" alt="" width="590" height="300" /></strong></h2>
<p><strong><a href="http://themeforest.net/item/my-mobile-page-wordpress-theme/full_screen_preview/138271?ref=Werlisa">Live demo</a> | <a href="http://themeforest.net/item/my-mobile-page-wordpress-theme/138271?ref=Werlisa">Descargar theme</a></strong></p>
<h2><strong>SimpleMobile<img class="alignleft size-full wp-image-631" title="SimpleMobile" src="http://wpsmarts.com/wp-content/uploads/2011/04/01_baner.__large_preview.png" alt="" width="590" height="300" /></strong></h2>
<p><strong><a href="http://themeforest.net/item/simple-mobile/full_screen_preview/110202?ref=Werlisa">Live demo</a> | <a href="http://themeforest.net/item/simple-mobile/110202?ref=Werlisa">Descargar theme</a></strong></p>
<h2><strong>iBloggr<img class="alignleft size-full wp-image-632" title="iBloggr" src="http://wpsmarts.com/wp-content/uploads/2011/04/1_splash.__large_preview.jpg" alt="" width="590" height="300" /></strong></h2>
<p><strong><a href="http://themeforest.net/item/sofa-ibloggr-wordpress-iphone-theme/full_screen_preview/79253?ref=Werlisa">Live demo</a> | <a href="http://themeforest.net/item/sofa-ibloggr-wordpress-iphone-theme/79253?ref=Werlisa">Descargar theme</a></strong></p>
<p>Si cuentas solo hay 10 themes &#8230; <strong>Conoces tu algún otro theme de WordPress para móviles?</strong> Deja tu comentario y comparte!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogshill.com/themes-wordpress-moviles/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fallo en IE8 del botón &#8220;Send&#8221; de Facebook</title>
		<link>http://www.blogshill.com/fallo-ie8-boton-send-facebook/</link>
		<comments>http://www.blogshill.com/fallo-ie8-boton-send-facebook/#comments</comments>
		<pubDate>Thu, 05 May 2011 00:47:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[botón]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Fallo]]></category>
		<category><![CDATA[IE8]]></category>
		<category><![CDATA[Send]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.blogshill.com/?p=191</guid>
		<description><![CDATA[<p>Después de varios días utilizando el botón &#8220;<strong>Send</strong>&#8221; en varios sitios he detectado un <strong>fallo en el funcionamiento del botón &#8220;Send&#8221; de Facebook en IE8 &#8220;Internet Explorer 8&#8243;</strong>. Hasta el momento estaba utilizando el script que comparto en otro artículo donde explico cómo <em><a title="Insertar Boton Send Facebook WordPress" href="http://www.blogshill.com/insertar-boton-send-wordpress-facebook/">insertar el botón send en wordpress</a></em>.</p>
<p>No sabría explicar técnicamente el fallo&#8230; <a href="http://www.blogshill.com/fallo-ie8-boton-send-facebook/" class="read_more">Leer mas</a></p>]]></description>
			<content:encoded><![CDATA[<p>Después de varios días utilizando el botón &#8220;<strong>Send</strong>&#8221; en varios sitios he detectado un <strong>fallo en el funcionamiento del botón &#8220;Send&#8221; de Facebook en IE8 &#8220;Internet Explorer 8&#8243;</strong>. Hasta el momento estaba utilizando el script que comparto en otro artículo donde explico cómo <em><a title="Insertar Boton Send Facebook WordPress" href="http://www.blogshill.com/insertar-boton-send-wordpress-facebook/">insertar el botón send en wordpress</a></em>.</p>
<p>No sabría explicar técnicamente el fallo que provocaba en el sitio pero<strong> visualmente los textos cambiaban de tamaño y el sitio no paraba de recargar el script que hacia funcionar el botón &#8220;Send&#8221;</strong>. En otros exploradores como <strong>Firefox o Safari</strong> el funcionamiento era correcto y <strong>no se observaba nada raro</strong>.</p>
<p>Ya he actualizado el anterior articulo y comparto otra forma de <strong>agregar el botón &#8220;Send&#8221; de Facebook </strong>de una forma que <strong>funciona de correctamente en todos los exploradores</strong>, aunque paso de tener el botón como &#8220;<strong>Enviar</strong>&#8221; a &#8220;<strong>Send</strong>&#8221; cambiando el código &#8220;<em><strong>es_ES</strong></em>&#8221; por el de &#8220;<em><strong>en_US</strong></em>&#8220;&#8230;quizás  esto tenga algo que ver?</p>
<p>Pueden ver la solución aqui: <em><a title="Boton Send WordPress" href="http://www.blogshill.com/insertar-boton-send-wordpress-facebook/">Botón &#8220;Send&#8221; en WordPress</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogshill.com/fallo-ie8-boton-send-facebook/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Insertar en WordPress Nuevo botón &#8220;Send&#8221; de Facebook</title>
		<link>http://www.blogshill.com/insertar-boton-send-wordpress-facebook/</link>
		<comments>http://www.blogshill.com/insertar-boton-send-wordpress-facebook/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 00:00:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Novedades]]></category>
		<category><![CDATA[boton Facebook]]></category>
		<category><![CDATA[boton send]]></category>
		<category><![CDATA[boton send Facebook]]></category>
		<category><![CDATA[boton send wordpress]]></category>
		<category><![CDATA[send Facebook]]></category>

		<guid isPermaLink="false">http://www.blogshill.com/?p=157</guid>
		<description><![CDATA[<p>Facebook ya tiene un nuevo botón para socializar contenidos en nuestros sitios, con el nuevo botón &#8220;<strong>Send</strong>&#8221; o &#8220;<strong>Enviar</strong>&#8221; podemos enviar información, por ejemplo este post, a nuestros amigos de Facebook. <strong>Los amigos destinatarios recibirán una invitación para visitar la pagina web en particular</strong>.</p>
<p><img class="aligncenter size-full wp-image-173" title="insertar bonton send wordpress facebook" src="http://www.blogshill.com/wp-content/uploads/2011/04/bonton-send-facebook1.jpg" alt="" width="398" height="264" /></p>
<p><em>Dicho mensaje consistirá en un enlace a la pagina web</em>&#8230; <a href="http://www.blogshill.com/insertar-boton-send-wordpress-facebook/" class="read_more">Leer mas</a></p>]]></description>
			<content:encoded><![CDATA[<p>Facebook ya tiene un nuevo botón para socializar contenidos en nuestros sitios, con el nuevo botón &#8220;<strong>Send</strong>&#8221; o &#8220;<strong>Enviar</strong>&#8221; podemos enviar información, por ejemplo este post, a nuestros amigos de Facebook. <strong>Los amigos destinatarios recibirán una invitación para visitar la pagina web en particular</strong>.</p>
<p><img class="aligncenter size-full wp-image-173" title="insertar bonton send wordpress facebook" src="http://www.blogshill.com/wp-content/uploads/2011/04/bonton-send-facebook1.jpg" alt="" width="398" height="264" /></p>
<p><em>Dicho mensaje consistirá en un enlace a la pagina web y también podrán observar el titulo, una imagen y una breve descripción del sitio.</em></p>
<p><strong>Insertar el botón &#8220;Send&#8221; en WordPress</strong> es muy fácil. Aquí pueden ver un ejemplo de código HTML completo para incluir el nuevo <strong>botón Send de Facebook en WordPress.</strong> Yo lo he puesto debajo de las estrellitas&#8230;quieres probarlo??</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;http://connect.facebook.net/es_ES/all.js#xfbml=1&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span> 
<span style="color: #339933;">&lt;</span>fb<span style="color: #339933;">:</span>send href<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;&lt;?php the_permalink(); ?&gt;&quot;</span> font<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;verdana&quot;</span><span style="color: #339933;">&gt;&lt;/</span>fb<span style="color: #339933;">:</span>send<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>También puedes <strong>agregar el botón Send a WordPress</strong> mediante un iframe:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;iframe id=&quot;facebookbtn&quot; allowtransparency=&quot;true&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; src=&quot;http://www.facebook.com/plugins/send.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>&quot;&gt;&lt;/iframe&gt;</pre></td></tr></table></div>

<p>Puedes revisar la <a title="Agregar Boton Send WordPress" href="http://developers.facebook.com/docs/reference/plugins/send/" target="_blank"><strong>documentación del botón “Send”</strong></a>, para ver que otras opciones tiene, por ejemplo la font, ref que sirve para hacerle seguimiento al algunas etiquetas.</p>
<p><strong>IMPORTANTE</strong>: Después de varios días de funcionamiento he notado como el <strong><em>botón Send de Facebook</em> provoca comportamientos extraños en IE8</strong> utilizando cualquier de los dos códigos expuestos arriba en su versión Española &#8220;<strong>es_ES</strong>&#8220;. Si tú también estas notando <strong>fallos del botón Send de Facebook en tu sitio</strong> te recomiendo sustituyas el código por este otro.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;fb-root&quot;</span><span style="color: #339933;">&gt;&lt;/</span>div<span style="color: #339933;">&gt;&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;http://connect.facebook.net/en_US/all.js#xfbml=1&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;&lt;</span>fb<span style="color: #339933;">:</span>send href<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;&lt;?php the_permalink(); ?&gt;&quot;</span> font<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;verdana&quot;</span><span style="color: #339933;">&gt;&lt;/</span>fb<span style="color: #339933;">:</span>send<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>Los chicos de Facebook van a tener que depurar esta nueva función..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogshill.com/insertar-boton-send-wordpress-facebook/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Técnicas Seo: Crear una Lens en Squidoo</title>
		<link>http://www.blogshill.com/tecnicas-seo-crear-una-lens-en-squidoo/</link>
		<comments>http://www.blogshill.com/tecnicas-seo-crear-una-lens-en-squidoo/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 09:07:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Técnicas Seo]]></category>
		<category><![CDATA[crear lens squidoo]]></category>
		<category><![CDATA[lens]]></category>
		<category><![CDATA[lens squidoo]]></category>
		<category><![CDATA[squidoo]]></category>
		<category><![CDATA[tecnicas seo]]></category>

		<guid isPermaLink="false">http://www.blogshill.com/?p=150</guid>
		<description><![CDATA[<p>Hoy me he decidido y he creado mi propia <a title="Lens Squidoo" href="http://www.squidoo.com/"><strong>Lens en Squidoo</strong></a>. Por lo visto si quieres tener algo más de presencia en este mundo y tu intención es vender o promocionar algún producto <strong>crear una Lens en Squidoo es una buena tecnica SEO</strong> y puede ser de gran utilidad.</p>
<p>La verdad&#8230; <a href="http://www.blogshill.com/tecnicas-seo-crear-una-lens-en-squidoo/" class="read_more">Leer mas</a></p>]]></description>
			<content:encoded><![CDATA[<p>Hoy me he decidido y he creado mi propia <a title="Lens Squidoo" href="http://www.squidoo.com/"><strong>Lens en Squidoo</strong></a>. Por lo visto si quieres tener algo más de presencia en este mundo y tu intención es vender o promocionar algún producto <strong>crear una Lens en Squidoo es una buena tecnica SEO</strong> y puede ser de gran utilidad.</p>
<p>La verdad es que <strong>ha resultado una experiencia un tanto confusa</strong> y antes de ponerme a escribir como un loco he tenido que mirar varios tutoriales para enterarme de que iba el tema. Para más confusión <strong>Squidoo</strong> te va dando puntos cada vez que haces algo que considera de utilidad y <strong>aun no tengo muy claro para que</strong>..</p>
<p><object width="560" height="349"><param name="movie" value="http://www.youtube.com/v/rDX-72bMD4Q?fs=1&amp;hl=es_ES" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="560" height="349" src="http://www.youtube.com/v/rDX-72bMD4Q?fs=1&amp;hl=es_ES" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>El resultado ha sido una Lens bastante chula que ahora y como no podía ser de otra manera ahora me toca promocionar mi Lens para que realmente el trabajo tenga algo de repercusión. Y entonces yo me pregunto&#8230;<strong>realmente vale la pena crear una Lens en Squidoo?</strong> Lo que he hecho ha sido crear un micro sitio al que voy a tener que aplicar las mismas técnicas de posicionamiento para darlo a conocer que se añade a lo que ya tengo pendiente&#8230;<strong>mas trabajo!!</strong></p>
<p><em>Aqui dejo el primer enlace de mi Lens:</em></p>
<p><strong><a title="SEO WordPress Plugins" href="http://www.squidoo.com/bestseopluginswordpress">Squidoo Lens</a><br />
</strong></p>
<p>Como podéis comprobar mi Lens está escrita en ingles, ya que el producto que deseo promocionar se puede considerar internacional, pero&#8230;<strong>que pasa si deseas promocionar un producto en Español?</strong> Estaría bien que si alguno de vosotros ha creado una <strong>Lens en Squidoo</strong> y le ha funcionado el tema compartiese su experiencia&#8230;<strong>te ha servido tener una Lens en Squidoo?</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogshill.com/tecnicas-seo-crear-una-lens-en-squidoo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Better SEO Slugs, permalinks más SEO</title>
		<link>http://www.blogshill.com/better-seo-slugs-permalinks-mas-seo/</link>
		<comments>http://www.blogshill.com/better-seo-slugs-permalinks-mas-seo/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 10:52:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress Plugin]]></category>
		<category><![CDATA[Better SEO Slugs]]></category>
		<category><![CDATA[contenido autogenerado]]></category>
		<category><![CDATA[mejorar optimización]]></category>
		<category><![CDATA[motores búsqueda]]></category>
		<category><![CDATA[SEO Slugs]]></category>

		<guid isPermaLink="false">http://www.blogshill.com/?p=133</guid>
		<description><![CDATA[<p><strong>Better SEO Slugs</strong> es uno de esos <strong>plugins de WordPress</strong> que sorprende por su sencillez, <strong>Better SEO Slugs</strong> nos permite eliminar palabras comunes como &#8216;a &#8216;, &#8216;el &#8216;, &#8216;en&#8217; de las de la URL de cada publicación para <strong>mejorar la optimización de nuestros artículos en los motores de búsqueda</strong>.</p>
<p>Esto es algo que como casi&#8230; <a href="http://www.blogshill.com/better-seo-slugs-permalinks-mas-seo/" class="read_more">Leer mas</a></p>]]></description>
			<content:encoded><![CDATA[<p><strong>Better SEO Slugs</strong> es uno de esos <strong>plugins de WordPress</strong> que sorprende por su sencillez, <strong>Better SEO Slugs</strong> nos permite eliminar palabras comunes como &#8216;a &#8216;, &#8216;el &#8216;, &#8216;en&#8217; de las de la URL de cada publicación para <strong>mejorar la optimización de nuestros artículos en los motores de búsqueda</strong>.</p>
<p>Esto es algo que como casi todo en WordPress puedes hacer de forma manual, simplemente deberías editar la URL de tu articulo y borrar aquellas palabras que consideres innecesarias. Posiblemente <strong>la mejor utilidad del plugin Better SEO Slugs se pueda dar en sitios de anuncios clasificados creados con wordpress o de contenido autogenerado</strong>.</p>
<p>En mi caso puedo decir que me ha venido muy bien para eliminar caracteres de la URL de un portal de <a title="Pisos Alquiler" href="http://www.pisos-alquiler.com/">pisos en alquiler</a> donde el usuario acostumbra a incluir caracteres en el titulo como &#8220;C/ Provenza 32 3<strong>º</strong>-1<strong>ª</strong>&#8220;, aparte de ser caracteres innecesarios estropean visualmente la URL que genera.</p>
<p>En IE por ejemplo en la URL de este titulo aparecería algo como esto:</p>
<p>&#8230;..-c-provenza-32-<strong>%c2%bac</strong>-1<strong>%c2%bac</strong>/  Esto no es SEO!!!</p>
<p>Si te interesa el plugin <strong>Better SEO Slugs </strong>para tu sitio quizás pueda interesarte este otro plugin &#8220;<a title="Plugin Random Number " href="http://www.blogshill.com/evitar-contenido-duplicado-en-wordpress/"><strong>Random Number</strong></a>&#8221; que trabajando de forma conjunta puede tener un efecto doblemente positivo, tus URL estarán optimizadas con <strong>Better SEO Slugs</strong> y podrás evitar ser penalizado por contenido duplicado con <a title="Plugin WordPress" href="http://www.blogshill.com/evitar-contenido-duplicado-en-wordpress/"><strong>Random Number</strong></a>.</p>
<p><strong>Repositorio WordPress: </strong><a title="Better SEO Slugs" href="http://wordpress.org/extend/plugins/better-seo-slugs/" target="_blank">Better SEO Slugs</a></p>
<p>Pruébalos de forma conjunta y me dices&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogshill.com/better-seo-slugs-permalinks-mas-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evitar contenido duplicado en WordPress</title>
		<link>http://www.blogshill.com/evitar-contenido-duplicado-en-wordpress/</link>
		<comments>http://www.blogshill.com/evitar-contenido-duplicado-en-wordpress/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 10:55:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress Plugin]]></category>
		<category><![CDATA[contenido]]></category>
		<category><![CDATA[duplicado]]></category>
		<category><![CDATA[evitar]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.blogshill.com/?p=89</guid>
		<description><![CDATA[<p><strong>Random Number</strong> es un plugin que <strong>minimiza la posibilidad de ser penalizado por Google por contenido duplicado en wordpress</strong>. Este plugin es muy simple y también una herramienta eficaz para <strong>evitar el contenido duplicado en WordPress</strong>, Random Number <strong>añade un número al azar</strong> (7 dígitos, sin duplicados) en la URL de cada post cuando se&#8230; <a href="http://www.blogshill.com/evitar-contenido-duplicado-en-wordpress/" class="read_more">Leer mas</a></p>]]></description>
			<content:encoded><![CDATA[<p><strong>Random Number</strong> es un plugin que <strong>minimiza la posibilidad de ser penalizado por Google por contenido duplicado en wordpress</strong>. Este plugin es muy simple y también una herramienta eficaz para <strong>evitar el contenido duplicado en WordPress</strong>, Random Number <strong>añade un número al azar</strong> (7 dígitos, sin duplicados) en la URL de cada post cuando se guarda por primera vez.</p>
<p>Usted puede pensar que esto es algo que se puede conseguir <strong>cambiando la estructura de los enlaces permanentes</strong> en el panel de control de WordPress, es cierto, en una nueva instalación de wordpress usted puede conseguir un efecto similar sin tener que instalar este plugin &#8230; pero <strong>¿qué pasa con los blogs que ya tiene cientos de post ya publicados?</strong> En mi caso me encontré con el problema después de un año y luego me resulto imposible modificar la estructura de enlaces permanentes para resolver el problema y redireccionar más de 1500 post a una nueva estructura era una <strong>opción demasiado arriesgada en términos SEO</strong>.</p>
<p><strong>Random Number  es un plugin no intrusivo</strong>, al activar el plugin no notará nada raro. <strong>Sus entradas antiguas siguen teniendo la misma estructura en la URL, así como las categorías, páginas, páginas de archivo, páginas de autor &#8230; etc, etc</strong>. Random Number sólo afectará a las nuevas publicaciones, sencillo pero de gran alcance &#8230; no?</p>
<p>Usted puede ver cómo este plugin funciona en uno de mis sitios, en este estoy usando la estructura de enlaces permanentes <strong>/%postname%/</strong> que es la peor decisión que podría tomar en un sitio de clasificados.</p>
<p>Este es un post creado antes de instalar el plugin de números aleatorios:<br />
<a href="http://www.pisos-alquiler.com/piso-en-alquiler-en-sant-vicent-del-raspeig-blasco-ibanez-8/" target="_blank">http://www.pisos-alquiler.com/piso-en-alquiler-en-sant-vicent-del-raspeig-blasco-ibanez-8/</a></p>
<p>Usted puede ver la diferencia después de instalar el plugin:<br />
<a href="http://www.pisos-alquiler.com/piso-en-alquiler-en-barcelona-poble-sec-paralelo-9926309/" target="_blank">http://www.pisos-alquiler.com/piso-en-alquiler-en-barcelona-poble-sec-paralelo-<strong>9926309</strong>/</a></p>
<p>Y la mejor parte .. <strong>no ha cambiado nada en sus entradas antiguas!</strong></p>
<p><em><strong>Descargalo Aqui</strong></em>: <a title="Descarga Random Number" href="http://wpplugins.com/plugin/810/random-number/">Random Number</a></p>
<p><em>Instalación:</em></p>
<p>1. Sube la carpeta <em>random-number-plugin</em> a <em>wp-content/plugins / directorio/</em><br />
2. Activar el plugin a través de &#8220;Plugins&#8221; del menú en WordPress<br />
3. Usted no tiene que hacer nada más! Publica un post nuevo y podrá ver la diferencia.</p>
<p><strong>Nota</strong>: Random Number no funciona si usted utiliza una <a title="Taxonomia Personalizada WordPress" href="http://codex.wordpress.org/Taxonomies" target="_blank"><strong>taxonomía personalizada</strong></a> en su sitio, no todo iba a ser perfecto..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogshill.com/evitar-contenido-duplicado-en-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

