Not true. My client has hundreds of pages, imagine the negative impact on server performance with these slow LIKe queries. You don’t need these for every requested page. It is a bug.
SELECT ID AS id, post_name AS slug
FROM wp_posts
WHERE (post_content LIKE ‘%[webdirectory]%’)
AND post_status = ‘publish’
AND post_type = ‘page’
SELECT ID AS id, post_name AS slug
FROM wp_posts
WHERE (post_content LIKE ‘%[webdirectory %’)
AND post_status = ‘publish’
AND post_type = ‘page’
SELECT ID AS id
FROM wp_posts
WHERE (post_content LIKE ‘%[webdirectory-listing-page]%’
OR post_content LIKE ‘%[webdirectory-listing]%’)
AND post_status = ‘publish’
AND post_type = ‘page’
SELECT ID AS id
FROM wp_posts
WHERE (post_content LIKE ‘%[webdirectory-listing-page %’
OR post_content LIKE ‘%[webdirectory-listing %’)
AND post_status = ‘publish’
AND post_type = ‘page’