To submit your wap pages to several search engine (google, yahoo, yandex, etc.), you need to add Sitemap.
What is a sitemap?
A sitemap is a file where' you provide information about the pages, videos, and other files on your site, and the relationships between- them. Search engines like Google read this file to more intelligently crawl your site. A sitemap tells the crawler which files you think are important in your site, and also provides valuable information about these files: for example, for pages, when the page was last updated, how often the page is changed, and any alter-nate language versions of a page.
Sitemap is a list of links from your site.
So, If your site have lots of links (pages/posts), It’s difficult to add them one by one in sitemap.
Below is the default XML code for Sitemap
<url>
<loc>https://example.com</loc>
<lastmod>::mapdate::</lastmod>
<changefreq>weekly</changefreq>
<priority>1.00</priority>
</url>
[wp_ad_camp_2]
From the above code you can see, If you want add wapkiz’s all pages in sitemap you need to add all pages one by one. It’s so difficult. Isn’t it?
So How can you add all your wap pages automatically in sitemap? Lets see..
If you create a music/video or any filelist site or blog site, you can create an automatic link generated sitemap.
Below is the sitemap XML code for filelist
[wp_ad_camp_2]
[fm]d=all,o=u,l=10,s=:to-page:,no=||
<url>
<loc>https://example.com/site-4.html?to-fid=%id%&to-name=%name%</loc>
<lastmod>::mapdate::</lastmod>
<changefreq>weekly</changefreq>
<priority>1.00</priority>
</url>
[/fm]
[wp_ad_camp_2]
Below is the sitemap XML code for blog
[blog]o=u,l=10,no=empty||
<url>
<loc>https://example.com/site_1.html?to-id=%id%</loc>
<lastmod>::mapdate::</lastmod>
<changefreq>weekly</changefreq>
<priority>1.00</priority>
</url>
[/blog]
[wp_ad_camp_2]
Note. Above sitemap codes are default XML code for wapkiz.
Change the url with your own url structure between- loc tag
<loc>Your Url Structure</loc>
Thank you !