Arne Brachold’s popular XML Sitemap generator plugin for WordPress may report fewer URL than that exists on your website. Arne Brachold's popular XML Sitemap Generator plugin para WordPress maio relatório URL menos do que o que existe no seu site. This in turn means less URL’s which you are submitting to search engines for indexing. Este, por sua vez, significa menos URL da qual você está enviando indexado por motores de busca.

I found out that in my case 25% of the actual number of url’s (posts) were being reported. Descobri que no meu caso, 25% do número real de url's (mensagens) estavam sendo relatado. I haven’t investigated the cause. Eu não investigou a causa. However when I changed the option to use Standard SQL, it is now reporting the URL’s fine. No entanto, quando me mudaram a opção de usar Padrão SQL, é agora relatar o URL da multa.

Another big problem with XML Sitemap generator Outro grande problema com XML Sitemap Generator 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. é que ele escreve diretamente para o arquivo e gradativamente, por isso, se outros mecanismos de busca do Google ou acessar o arquivo enquanto ele ainda está escrito, assim que você está em apuros. It is will read a smaller and improperly formatted file. É irá ler um arquivo menor e formatada incorretamente. A better approach would be to write the file elsewhere and swap it as an atomic operation. A melhor abordagem seria a gravação do arquivo swap e noutros locais-o como uma operação atômica.

How can you find out the number of post url’s reported and the actual number of posts? Como você pode descobrir o número de postos de trabalho url's relatados e o número real de postos de trabalho?
Run a simple SQL query against your MySQL database to get the number of published posts in your database: Executar uma consulta SQL simples contra o seu banco de dados MySQL para obter o número de posts publicados em seu banco de dados:
select count(*) from st_posts where post_status = 'publish' and post_type='post'; selecione count (*) de st_posts onde post_status = 'publicar' e post_type = 'post';

Now grep sitemap.xml to find the post url’s reported. Agora grep sitemap.xml para encontrar o posto url's relatados. For example for this blog, each post has the word ‘/acrhive/’ prefixed in the url. Por exemplo para este blog, cada lugar tem a palavra '/ acrhive /' prefixado no URL. So my Linux command was: Então meu Linux comando foi:
grep '/archive/' sitemap.xml|wc -l grep '/ archive /' sitemap.xml | wc-l

Note: wc -l give the number of lines. Nota: wc-l dar o número de linhas.

You can similarly verify the categories and tags report too. Você pode verificar a semelhança categorias e etiquetas relatório também. However I don’t think they are as important. No entanto não creio que eles são importantes.