add_action('init', function () {
$feeds = [
'arts' => 'Arts',
'business' => 'Business',
'climate' => 'Climate',
'crime-justice' => 'Crime & Justice',
'culture' => 'Culture',
'editors-picks' => 'Editor’s picks',
'education' => 'Education',
'health' => 'Health',
'opinion' => 'Opinion',
'politics' => 'Politics',
'royal-family' => 'ROYAL FAMILY',
'sport' => 'Sport',
'technology' => 'Technology',
'travel' => 'Travel',
'u-k-news' => 'U.K. news',
'world' => 'World',
];
foreach ($feeds as $slug => $label) {
add_feed('cyberseo-' . $slug, function () use ($slug, $label) {
status_header(200);
nocache_headers();
header(
'Content-Type: application/rss+xml; charset=' .
get_option('blog_charset')
);
$posts = new WP_Query([
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 20,
'category_name' => $slug,
'orderby' => 'date',
'order' => 'DESC',
'ignore_sticky_posts' => true,
'no_found_rows' => true,
]);
echo '';
?>