Guest User

Untitled

a guest
Jul 14th, 2023
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. /* Custom sitemap */
  2.  
  3. \RankMath\Sitemap\Router::get_base_url( 'custom-sitemap.xml' ),
  4. 'lastmod' => '',
  5. ]
  6. ];
  7. }
  8.  
  9. public function get_sitemap_links( $type, $max_entries, $current_page ) {
  10. $links = [
  11. [ 'loc' => 'http://www.mydomain.com/' ],
  12. [ 'loc' => 'http://www.mydomain.com/2',],
  13. ];
  14.  
  15. return $links;
  16. }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment