skip to Main Content

Show all categories pages in WordPress sitemap?

Good day, dear specialists. There is such a code $categoriesForSitemap = get_categories(array( 'hide_empty' => 1, 'depth' => 0, 'hierarchical' => false )); foreach($categoriesForSitemap as $category) { $category_link = get_category_link($cat->cat_ID); $sitemap .= '<url>' . '<loc>' . get_category_link($category->term_id) . '</loc>' . '<priority>1</priority>'…

VIEW QUESTION
Back To Top
Search