If you want to determine if you are in a category feed, for example:
http://example.com/category/football/feed
you can do so with
add_action('wp', 'mycheck');
function mycheck() {
if(is_feed() && is_category() ){
// do stuff
}
}
or
add_action('wp', 'mycheck');
function mycheck() {
global $wp_query;
if($wp_query->is_feed && $wp_query->is_category){
// do stuff
}
}
You can similarly check if you are in a tag feed, for example:
http://example.com/tag/liverpool/feed
with is_tag
.
You can then check if you are in a custom taxonomy feed, for example:
http://example.com/country/england/feed
with is_tax
.
Related Posts:
- Conditional tag to show content in custom rss feed?
- How to remove feeds from WordPress totally?
- Getting /feed/ behind post urls in Google Webmaster Tools; crawler errors? [closed]
- Disable comments feed, but not the others
- How to read the xml file in wordpress?
- Is it usual to have a non-Feedburner feed on a WordPress blog?
- Disable links in header (feeds and such)
- Troubleshooting fetch_feed and SimplePie
- How to exclude posts of a certain format from the feed
- Possible to use conditionals within add_feed() callback?
- Combining RSS Feeds and Sorting with fetch_feed
- wp_remote_get vs. fetch_feed ? which is the better for performance?
- how to publish a feed of posts with a certain custom field value?
- Combining multiple RSS feeds using fetch_feed
- Yoast custom feed template as add_feed function?
- Restrict certain posts from being sent to the feed subscribers
- How to display LinkedIn feed/company updates into WordPress site? [closed]
- Duplicate Posts using Feedwordpress
- Is there a way to have a dual WP feed (full/partial)?
- Custom WordPress Feeds operators?
- How to retrieve the list of all posts ever published via the feed?
- Update feed more frequently
- w3 total cache keeps minifying my feeds
- Adding a featured image to atom feed
- Add custom profile info into Feed
- How to filter out an iframe from feed
- combine multiple feeds with fetch_feed and display blog titles for each item?
- RSS feed validity and Google Adsense
- Possible to get feed to return latest updated posts rather than latest published?
- Removing the FeedBurner redirect
- Options for authenticated feeds
- RSS feed for deleted posts and comments
- Server stressed by /feed
- How to get feed for pages?
- How can i realize a semi-private research diary blog
- WordPress feeds and publish date
- Editing feed for thumbnails and link
- feed appearing different in the three main browsers
- Fetch_Feed cURL error 28
- Using fetch_feed to retrieve items with non common titles
- How to output WordPress feed in a non-WordPress site?
- Change conditionally a variable value for different feeds
- How do I modify the ‘more’ link in a feed
- fetch_feed Performance Issue
- Googlebot adding /feed at the end of my URLs
- Check if feed is fetched successfully
- How can I set my RSS feed time to update feed quicker
- Why is my comment feed broken?
- Require authorization for access to RSS feeds, but leave posts public
- after server upgrade, if I enable custom permalinks, my /feed stops working
- Using links (link_rss field) as the source for fetch_feed
- wordpress feed link change
- Why I don’t see all my post in feed in WordPress
- How can I force fetch_feed to return real URL?
- Default Wordress RSS Widget does not work on a subdomain site, works when I move it
- Expire Header for custom XML feed
- My RSS feed is not working
- How to remove feeds from WordPress totally?
- a lot of errors with feedwordpress
- Does the FD Feedburner plugin create feeds for categories
- fetch_feed function works on template index.php but not in plugin/wp-admin
- Need correct results from 6 rss (fetch_feed)
- How can I rename the element to in my RSS?
- Password Protect a Podcast Feed?
- How to fetch all the movie details from IMDB
- Does it makes sense to have {post}/feed?
- Custom RSS causing timeout for website
- Getting headers and status code while using fetch_feed
- Bypass fetch_feed cache
- Disabling options for xml feeds
- How do test if a post is a custom post type?
- Check if wp-login is current page
- How to get image title/alt attribute?
- How to determine whether we are in add New page/post/CPT or in edit page/post/CPT in wordpress admin?
- Add Custom Fields to Custom Post Type RSS
- Toggle admin metabox based upon chosen page template
- the_content and is_main_query
- How to show page content in feed?
- Conditional for single-{post-type}.php
- Conditional tag to check if ‘page.php’ is being used?
- How to make plugin required in a wp theme without using php conditional statements when calling an individual function from that plugin?
- Get all posts in RSS
- How to add post featured image to RSS item tag?
- What is the condition to check if we are in admin or frontend?
- How to get SimplePie fetch_feed without stripping iframe code?
- Individual rss feed entry length for categories?
- Actions, functions and conditionals
- How to force a query conditional?
- Auto Add Image Title,Caption,Alt Text,Description while uploading Images in WordPress
- if (is_page(**PAGE ID**)) not working
- Remove or Edit in Feeds
- Include and Exclude Taxonomies From Archives & Feeds Using ‘pre_get_posts’
- Advantages and disadvantages of using automatic-feed-links
- Cannot get add_feed to work
- WordPress function like is_category for subcategory? is_subcategory?
- How to Make a Separate RSS Feed for Each Custom Post Type
- is_home , is_front_page not working
- Should I provide RSS or Atom feeds?
- What is the correct method for determining ‘is_front_page’ when using filters such as ‘pre_get_posts’ and ‘posts_where’?
- How to secure or disable the RSS feeds?