Arne Brachold’s popular XML Sitemap generator plugin for WordPress may report fewer URL than that exists on your website. Arne Brachold del popular generador XML Sitemap plugin para WordPress podrá informar URL menos a más que existe en su sitio web. This in turn means less URL’s which you are submitting to search engines for indexing. Esto, a su vez significa menos del URL que usted está enviando a los motores de búsqueda para indexarlos.

I found out that in my case 25% of the actual number of url’s (posts) were being reported. Me enteré que en mi caso el 25% del número real de url's (puestos) se informó. I haven’t investigated the cause. No he investigado la causa. However when I changed the option to use Standard SQL, it is now reporting the URL’s fine. Sin embargo, cuando cambié la opción de utilizar SQL estándar, hoy en día es la presentación de informes URL está bien.

Another big problem with XML Sitemap generator Otro gran problema con el generador XML Sitemap plugin is that it write to the file directly and incrementally, so if Google or other search engines access the file while it is still writing, well you are in trouble. es que escribir en el archivo directamente y cada vez más, de modo que si Google u otros motores de búsqueda acceder al archivo mientras se está todavía escrito, así que está en problemas. It is will read a smaller and improperly formatted file. Se dará lectura a un menor y de forma abusiva archivo con formato. A better approach would be to write the file elsewhere and swap it as an atomic operation. Un mejor enfoque sería escribir el archivo en otros lugares y de intercambio como una operación atómica.

How can you find out the number of post url’s reported and the actual number of posts? ¿Cómo se puede averiguar el número de puestos url's denunciados y el número real de puestos de trabajo?
Run a simple SQL query against your MySQL database to get the number of published posts in your database: Ejecutar una simple consulta SQL contra su base de datos MySQL para obtener el número de puestos en su base de datos:
select count(*) from st_posts where post_status = 'publish' and post_type='post'; select count (*) de st_posts donde post_status = 'publicar' y post_type = "post";

Now grep sitemap.xml to find the post url’s reported. Ahora grep sitemap.xml para encontrar el puesto de url's. For example for this blog, each post has the word ‘/acrhive/’ prefixed in the url. Por ejemplo para este blog, cada puesto tiene la palabra '/ acrhive /' prefijo en la URL. So my Linux command was: Así que mi comando de Linux era la siguiente:
grep '/archive/' sitemap.xml|wc -l grep '/ archivo /' sitemap.xml | wc-l

Note: wc -l give the number of lines. Nota: wc-l el número de líneas.

You can similarly verify the categories and tags report too. Igualmente, puede comprobar las categorías y etiquetas informe. However I don’t think they are as important. Sin embargo no creo que son tan importantes.