Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: feed_content_type

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
500           'rss'  => 'application/rss+xml',
501           'rss2' => 'application/rss+xml',
502           'rss-http'  => 'text/xml',
503           'atom' => 'application/atom+xml',
504           'rdf'  => 'application/rdf+xml'
505      );
506
507      $content_type = ( !empty($types[$type]) ) ? $types[$type] : 'application/octet-stream';
508
509      return apply_filters( 'feed_content_type', $content_type, $type );
510 }
511
512 /**
513  * Build SimplePie object based on RSS or Atom feed from URL.
514  *
515  * @since 2.8
516  *
517  * @param string $url URL to retrieve feed
518  * @return WP_Error|SimplePie WP_Error object on failure or SimplePie object on success