Hello,
Thanks for reaching out here…
I have not understood your point so please explain in more detail and please explain with some screenshots.
Can you please share your website link so we will better understand?
Thanks,
Hi Ketan,
Your plugin create link with /news/ like that;
mywebsite.com/news/article/
And when I ask rankmath to create sitemap for the news, he made sitemap with this address:
mywebsite.com/news-sitemap.xml
This is the same address as the news sitemap used to indicate new articles to Google :
https://developers.google.com/search/docs/crawling-indexing/sitemaps/news-sitemap
Hello,
Thanks for reaching out here…
Actually, you want to change our plugin news slug because I think your same news slug issue.
Please go to your active theme function.php file and add the below code to your theme function.php file.
function wpnw_modify_news_post_slug( $slug ){
$slug = 'all-your-slug'; // Write your desired slug
return $slug;
}
add_filter( 'wpnw_news_post_slug', 'wpnw_modify_news_post_slug' );
Thanks