sanitize_mime_type [ WordPress Function ]
sanitize_mime_type ( $mime_type )
| Parameters: |
|
| Returns: |
|
| Defined at: |
|
Sanitize a mime type
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- sanitize_mime_type (WordPress Function) - WPSeek.com
WordPress lookup for sanitize_mime_type, a WordPress Function. wpseek.com is a WordPress-centric search tool for developers and theme authors.
wpseek.com - WPML 2.3.0 - WPML
May 30, 2011 ... function sanitize_mime_type( $mime_type ) { ... return apply_filters( ' sanitize_mime_type', $sani_mime_type, $mime_type ); }. Thanks. Reply ...
wpml.org - Tartaglia Engineering
turn string Sanitized mime type */ function sanitize_mime_type( $mime_type ) { $ sani_mime_type = preg_replace( '/[^-+*.a-zA-Z0-9\/]/', '', $mime_type ); return ...
tartaglia-engineering.com - <?php /** * Sets up the default filters and actions for most * of the ...
... Mime types add_filter( 'pre_post_mime_type', 'sanitize_mime_type' ); add_filter ( 'post_mime_type', 'sanitize_mime_type' ); // Places to balance tags on input ...
core.svn.wordpress.org