I’ve found the right way digging through the WP documentation: https://developer.wordpress.org/reference/hooks/wp_video_shortcode/
This code seems to do the trick:
function buildVideoPlayer($output, $attr)
{
// $output contains the default HTML string, created by the WP core
// $attr is an associative array, which contains the parameters
// (src, poster, preload, etc.) specified in the shortcode
// The following piece of HTML string will replace the default WP video player
return "<video src="".$attr["mp4"].""></video>";
}
add_filter("wp_video_shortcode", "buildVideoPlayer", 10, 2);
Make sure to pass how many parameters do you want to catch in add_filter()
. The default value is 1, but wp_video_shortcode
has 4, and in this code, I needed the 2nd one.
Related Posts:
- Where can I find a list of WordPress hooks?
- How to intercept a 404 error
- Move excerpt meta box to above content editor
- Whats worth using add_action when we can simply use add_filter?
- add_action(‘wp_ajax_[action name]’, myfunction) problem
- Hook on trash post
- Which hook if user profile information is updated?
- Adding onload to body
- What is the earliest possible hook for safely using `is_front_page`?
- Send data to 3rd party api with wp_remote_post on wp_login
- How to customize the WP admin default help contents
- Hide gutenberg option blocks
- Make W3 Total Cache “Empty All Caches” function purge varnish [closed]
- admin_post hook not called
- deactivated_plugin hook: get the name of the plugin
- Is there a hook for user activation (after they click the email confirm)?
- Setcookie works on admin but not front end
- How can I add a default description to uploaded files?
- Hook Widget to Woo Theme in functions.php
- Bulk action hook for admin pages which uses WP_List_Table
- How to hook into user registration process Before user registers
- How to use the post_updated hook before and after arguments
- WP Admin Bar frontend issue with dashicon deregister
- A good way to add a different background image for each page?
- Searching a hook which triggers when deleting a post to get all comments
- add_action for lost_password or modify wp-login.php?action=lostpassword
- Add my own function to existing WooCommerce hook
- @wordpress/hooks use to add actions/filters within multiple plugin
- Firing a function AFTER redirect
- How can I customize the upload error message in WordPress?
- WordPress hook that gets featured image from direct URL?
- Why is save_post hook being called twice despite all my efforts?
- What’s hook to use immediately after a user is authentcated [duplicate]
- Hook before posting via JSON REST API
- add_action for unknown custom post types
- How to prevent double execution of do_action statements
- When is the {$new_status}_{$post->post_type} transition hook fired?
- TinyMCE as comment editor – encoding issues
- Hook to change Logout url
- How to exclude a list of specific category in category widget in new post admin screen?
- Method to find a hook
- Understanding WP
- Get post or page id early
- Looking for a hook for post.php
- Executing Arbitrary Code at a Specific URL without Creating a Post or Page?
- Update a costume wp_usermeta key back to 0 every 24hours (time can be specified as needed)
- customize_controls_enqueue_scripts doesn’t fire from within my plugin
- Save User Meta Email Address in Lowercase
- When are wp redirect methods safe to hook?
- WooCommerce single product page quantity description [closed]
- Execute JavaScript in WordPress Hook
- How to cancel the trash action inside wp_trash_post
- wp_insert_post_data hook should be called before updating db but isn’t
- What is the difference between add_action and add_filter [duplicate]
- load-* hook for dashboard
- What conditions must be met in order to upload .zip file to a multisite WordPress installation?
- How to hook code in ?
- wp_enqueue_script before wp_head
- Is it possible to add the_content filter upon login?
- Use an array of page template slugs and $hook
- wp_logout hook never triggered
- add short description under price
- How do I use pre_option_{option_name} correctly?
- post.php AJAX request not being called when publishing post
- WordPress media library allow uploading fake file
- What hook do I use if I want to update a user profile field when a new user is created?
- How to add custom tab page in backend?
- Add html code in admin page
- Hooking dynamic/variable named hook in all cases
- What hook to add at start of WordPress load
- Knowing if a post is sticky in the ‘save_post’ action. Where do I have to hook?
- Neccessary to call add_submenu_page and add_menu_page from admin_menu hook?
- How to read and write session data?
- Count when a post of a custom post type is deleted and store it in a theme option
- Can we change the hook firing sequence?
- Intercept loading of a certain page
- Add content in cpt archive page
- Creating custom post on registration in wordpress?
- Display custom user profile fields in wordpress
- profile_update not supplying old data
- Output Redirect Headers on Admin Dashboard Page
- add_image_size not working with after_switch_theme
- wordpress hooks
- Check when a setting has been changed
- Hook after creating a post and retrieve infos from this post immediatly
- add extra parameter in default hook in wordpress
- $new_pass always returns null – password_reset hook
- Exclude WooCommerce terminations from YOAST
- Hook triggered twice in a Woocommerce single product page
- set_post_format called after wp_update_post when using bulk edit?
- add hook restricted only to either plugins or themes?
- How to hook watchdog script for existence of a WP page?
- addaction hook cause redirection problem
- Cannot override hooks.php
- Getting all post/page IDs related to a soon-to-be-deleted tag/cat
- Hooking get_pages()
- How to access variables in the function where apply_filters() is called?
- Fire a hook programmatically
- How can I add new attributes in a Class when my addon is active?
- getSaveContent.extraProps hook for core/post-title doesn’t add new attributes on to the frontend