We can simplify the mime type checks, with the following boolean functions:
-
wp_attachment_is( 'image', $id )
-
wp_attachment_is( 'video', $id )
-
wp_attachment_is( 'audio', $id )
where $id
is the attachment ID.
The attachment’s ID is actually one of the input arguments for the media_send_to_editor
filter callback.
We also have:
wp_attachment_is_image( $id )
that’s a wrapper for wp_attachment_is( 'image', $id )
.
References:
Related Posts:
- Add custom options to the wplink dialog
- Remove Editor From Homepage
- Tiny MCE editor stripping xlink:href parameter from SVG USE tag
- Change upload directory on custom plugin page
- WP Rest API – Upload media without saving attachment post
- Disable resizing of gif when uploaded
- Can I add custom meta for each image uploaded via media-upload.php?
- WordPress 3.5+ upload tool filter
- How to enable visual editor when editing comments on the dashboard?
- Hide content editor for posts after approriate date
- Pass parameter to the upload_dir filter
- Allow EPS file upload – two EPS files have different MIME types
- Move a file from a directory to another
- Using wp_handle_upload() to Direct Specific Path by Using $overrides
- Adding TinyMCE buttons without removing plugin buttons?
- upload_files cap to not loggen in users – add_cap to not logged in users
- wp_upload_bits Upload Specific Sizes Only
- Upload restrictions – upload_mimes – filter: Adding multiple MIMEs for a single extension and adding multiple extensions for a single MIME type?
- Filter causing loss of _wp_attachment_metadata
- Filter Media by attached page or blog post in Library
- Show uploaded pdf files dynamically and filter by month name
- Overriding Generated Attachment Post URL
- How to get to the date of the uploaded file
- Post Type Upload Directory – {post_type}_upload_dir filter
- what is __return_false in filters
- Passing Additional Parameters to add_filter Callable
- How can I add an Author filter to the Media Library?
- Custom theme hooks / filters – passing arguments
- What params are available with the_content filter?
- How to hook wp_list_pages?
- Don’t replace “|” with Empty String (“”) when generating slugs from title
- apply_filters(‘the_content’, $content) alternative
- How to use the_excerpt in a filter hook?
- Add wrapper to only youtube videos via embed_oembed_html filter function
- Changing document title only on a custom page template
- Shortcodes not resolved in AJAX call response
- Possible to filter the posts or categories that XML-RPC users see in their mobile application?
- wp_link_pages output appears twice
- Add filter to wp_dropdown_pages() or wp_dropdown_categories() – no select container?
- Hook different functions to the same filter conditionally OR Pass additional arguments to existing filter?
- How do I pass the value from a foreach loop to an add_filter function? [closed]
- How do I replace a render_callback function for a block?
- check if FILTER(“the_content”) is being executed in `the_post()`
- Change Password Strength Indicator names?
- Can the wp_filter object hold multiple values with the same key
- apply_filters/do_action tag characters limit
- Add Defer Attributes to WordPress Scripts with consistent versioning
- How to stop wrapping comments in P tag
- How to modify core when there is no hook?
- String regex match replace for role ‘contributor’ only
- Can plugins that filter post contents work on posts from Word 2007?
- Disable auto-resizing of uploaded images, but only for certain filename
- html tags in gettext hook get escaped
- Set default terms for new posts / CPTs
- Get .subsubsub count of post per status queried using pre_get_posts
- Better extend a class or use add filter/action hooks?
- Adaptive product filters for WooCommerce
- Adding a Clone link to product attributes – post_row_actions() filter, or how to override a Class question
- Plugin options, presets and filters : can you help me improve my workflow?
- Why does adding a filter to ‘the_title’ break the server?
- Redirect to another page using contact form 7? [closed]
- Wrapping my head around add_filter
- How to add_filter to an OOP based apply_filter(‘foo::bar’, $a);
- Help with filter for wp_notify_moderator()
- Change custom post type GUID in RSS
- filter hook to load a different post/page on current post/page
- How would I be able to use a font awesome icon as a user’s avatar?
- Add something after a filter
- add_filter the_content doesn’t work
- Redirect to woocommerce checkout after adding to cart – item already in cart
- `authenticate` filter never gets called
- Add filter unless it is being called under specific function
- Is there a filter to programmatically change the HTML tab switching output of the page editor?
- Image not showing up in media loader success area – followup
- post_orderby filter breaks function
- Disable Remember Me in Login Form
- How do I add a line break to a string that is output by PHP?
- Counting a WP_Post Object value in an arary, using a filter?
- style_loader_tag not changing stylesheet to preload
- List all categories that have results in a query
- Distinguish between page and post in function
- Display posts from today and future in Elementor ‘posts widget’
- Right filter for rewriting page statuscode
- Changing title using filter not working with argument
- Archive Widget – Count only parent posts
- How to filter page title for certain page?
- Displaying posts on a page that have been assigned a value in a database
- Replace Text with hyperlinks
- adding an action inside if condition not working
- Adding filter to an specific page/site direction
- Cutting off excerpt with first sentence
- Change URLs in default WordPress slider to relative from absolute
- Change add_filter based on Ajax
- check, if any “add_action” function contains string XXXXXXXXX
- How to add more than one custom metadata as filter on the post list page?
- Add Default WordPress Formatting To Data From External SQL Tables?
- Joining tables not working in the post editor page
- Auto append text after the title?
- filter a list by gender
- add_filter(‘the_content’, ‘method’) does not trigger my custom method