Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: post_mime_types

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
3217      }
3218
3219      /**
3220       * Filters the default list of post mime types.
3221       *
3222       * @since 2.5.0
3223       *
3224       * @param array $post_mime_types Default list of post mime types.
3225       */
3226      return apply_filters( 'post_mime_types', $post_mime_types );
3227 }
3228
3229 /**
3230  * Checks a MIME-Type against a list.
3231  *
3232  * If the `$wildcard_mime_types` parameter is a string, it must be comma separated
3233  * list. If the `$real_mime_types` is a string, it is also comma separated to
3234  * create the list.
3235  *