Arne Brachold’s popular XML Sitemap generator plugin for WordPress may report fewer URL than that exists on your website. Арне Brachold Популярные XML Sitemap генератор плагин для WordPress может сообщить URL меньше, чем о том, что существует на Вашем сайте. This in turn means less URL’s which you are submitting to search engines for indexing. Это, в свою очередь, означает меньше URL в которую вы представляете для поисковых систем и для индексирования.

I found out that in my case 25% of the actual number of url’s (posts) were being reported. Я узнал, что в моем случае 25% от фактического числа в url (должности) в настоящее время сообщалось. I haven’t investigated the cause. Я не расследуются причины. However when I changed the option to use Standard SQL, it is now reporting the URL’s fine. Однако, когда я изменилась возможность использовать стандартные SQL, теперь отчетный URL в штрафом.

Another big problem with XML Sitemap generator Еще одна большая проблема с 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. заключается в том, что писать в файл непосредственно и по нарастающей, так что, если Google и других поисковых системах доступ к этому файлу, хотя она по-прежнему письменной форме, так и вы в беде. It is will read a smaller and improperly formatted file. Он будет читать меньше и ненадлежащим образом файл в формате. A better approach would be to write the file elsewhere and swap it as an atomic operation. Лучше было бы записать файл подкачки и в других местах это как атомные операции.

How can you find out the number of post url’s reported and the actual number of posts? Как вы можете узнать количество должностей в url и сообщил фактическое количество сообщений?
Run a simple SQL query against your MySQL database to get the number of published posts in your database: Запуск простой SQL запрос в отношении вашей базы данных MySQL, чтобы получить количество опубликованных сообщений в базе данных:
select count(*) from st_posts where post_status = 'publish' and post_type='post'; выберите кол (*) из st_posts где post_status = 'опубликовать' и post_type = 'пост';

Now grep sitemap.xml to find the post url’s reported. Теперь grep sitemap.xml найти в должность url сообщалось. For example for this blog, each post has the word ‘/acrhive/’ prefixed in the url. Например, для этого блога, каждая должность словом '/ acrhive /' префикс в ссылке. So my Linux command was: Так что мой Linux команду:
grep '/archive/' sitemap.xml|wc -l grep '/ архив /' sitemap.xml | чм-л

Note: wc -l give the number of lines. Примечание: туалет-л дать числу строк.

You can similarly verify the categories and tags report too. Можно также проверить, категории и теги доклад тоже. However I don’t think they are as important. Однако я не думаю, что они имеют такое же важное значение.