wp_enqueue_media( array $args = array() )
- Since
- 3.5.0
- Source
wp-includes/media.php:4923
Compatibility
- WordPress
- since 3.5.0
- PHP
- 7.4–8.6-dev
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0), and compiles on PHP 7.4 through 8.6-dev.
Parameters
$argsarrayoptional- Arguments for enqueuing media scripts.Default:
array()$postint|WP_PostPost ID or post object.
Performance profile
How much work a call to wp_enqueue_media() does, and what it touches: the algorithmic scaling, the Zend instruction count per call across PHP versions, the hooks it hands control to, and the core code that calls it. Measured from the compiled opcodes, not a stopwatch, so every number is identical on any machine running the same PHP version, and every function in core is ranked by cost.
- Cost class
- Heavy
- Scaling
- Constant
- Instructions
- 599–682
- Plugin surface
- 9 hooks
- Called by
- 7
Reaches the database via get_post().
No loop in the body: the same number of instructions runs whatever you pass in.
Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 766.
Third-party callbacks on 'media_upload_tabs', 'media_library_show_audio_playlist', 'media_library_show_video_playlist' run inside this call, and their cost is not bounded by anything here.
7 places in core call this, so the cost is paid more often than your own code shows.
What it touches
- hookthird-party callbacks
apply_filters()called directly - optionoption read or write
get_option()called directly - querycontent query
get_post()called directly - cacheobject cache
wp_cache_get()one call below wp_enqueue_media() - serializeserialisation
maybe_unserialize()one call below wp_enqueue_media()
Further down the call graph this can also reach transient. That is the worst case, several calls deep and usually down an error path, not what a normal call pays.
What one call costs · 50 distinct outcomes
One number would be a lie: the work depends on which branch runs. These are every distinct cost wp_enqueue_media() can have, taken from its control-flow graph on PHP 8.5.
| When | Instructions | Calls it makes |
|---|---|---|
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && !isset($args) && !is_admin() | 599–603 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && !isset($args) && is_admin() | 605–609 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && !is_admin() | 628–634 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && is_admin() | 634–640 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && !is_admin() | 635–641 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && !is_admin() | 637–648 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && !wp_attachment_is() && !is_admin() | 640–644 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && is_admin() | 641–647 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && wp_attachment_is() && post_type_supports() && !is_admin() | 642–646 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), post_type_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && is_admin() | 643–654 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && !is_admin() | 644–655 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && post_type_supports() && !is_admin() | 646–650 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
38 further outcomes, up to 682 instructions
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && !wp_attachment_is() && is_admin() | 646–650 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && wp_attachment_is() && !post_type_supports() && !is_admin() | 647–651 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), post_type_supports(), current_theme_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && !wp_attachment_is() && !is_admin() | 647–651 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), wp_attachment_is(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && wp_attachment_is() && post_type_supports() && is_admin() | 648–652 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), post_type_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && wp_attachment_is() && post_type_supports() && !is_admin() | 649–653 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), post_type_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && is_admin() | 650–661 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && !post_type_supports() && !is_admin() | 651–655 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && post_type_supports() && is_admin() | 652–656 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && !wp_attachment_is() && !is_admin() | 653–658 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && post_type_supports() && !is_admin() | 653–657 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && wp_attachment_is() && !post_type_supports() && is_admin() | 653–657 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), post_type_supports(), current_theme_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && !wp_attachment_is() && is_admin() | 653–657 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), wp_attachment_is(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && wp_attachment_is() && !post_type_supports() && !is_admin() | 654–658 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), post_type_supports(), current_theme_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && wp_attachment_is() && post_type_supports() && !is_admin() | 655–660 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), post_type_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && wp_attachment_is() && post_type_supports() && is_admin() | 655–659 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), post_type_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && !post_type_supports() && is_admin() | 657–661 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && !post_type_supports() && !is_admin() | 658–662 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && post_type_supports() && !is_admin() | 659–664 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && !wp_attachment_is() && is_admin() | 659–664 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && post_type_supports() && is_admin() | 659–663 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && wp_attachment_is() && !post_type_supports() && !is_admin() | 660–665 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), post_type_supports(), current_theme_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && !wp_attachment_is() && !is_admin() | 660–665 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), wp_attachment_is(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && wp_attachment_is() && !post_type_supports() && is_admin() | 660–664 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), post_type_supports(), current_theme_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && wp_attachment_is() && post_type_supports() && is_admin() | 661–666 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), post_type_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && wp_attachment_is() && post_type_supports() && !is_admin() | 662–667 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), post_type_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && !post_type_supports() && !is_admin() | 664–669 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && !post_type_supports() && is_admin() | 664–668 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && post_type_supports() && is_admin() | 665–670 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && post_type_supports() && !is_admin() | 666–671 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && wp_attachment_is() && !post_type_supports() && is_admin() | 666–671 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), post_type_supports(), current_theme_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && !wp_attachment_is() && is_admin() | 666–671 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), wp_attachment_is(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && wp_attachment_is() && !post_type_supports() && !is_admin() | 667–672 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), post_type_supports(), current_theme_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && wp_attachment_is() && post_type_supports() && is_admin() | 668–673 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), post_type_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && !current_theme_supports() && $post && !post_type_supports() && is_admin() | 670–675 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && !post_type_supports() && !is_admin() | 671–676 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && post_type_supports() && is_admin() | 672–677 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && wp_attachment_is() && !post_type_supports() && is_admin() | 673–678 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), post_type_supports(), current_theme_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
!did_action() && $show_audio_playlist !== null && $show_video_playlist !== null && is_array($months) && isset($args) && current_theme_supports() && $post && !post_type_supports() && is_admin() | 677–682 | did_action(), wp_parse_args(), apply_filters(), get_option(), get_option(), get_option(), wp_get_audio_extensions(), wp_get_video_extensions(), array_merge(), get_allowed_mime_types(), apply_filters(), apply_filters(), apply_filters(), get_user_option(), apply_filters(), admin_url(), add_query_arg(), get_post_mime_types(), wp_list_pluck(), apply_filters(), wp_create_nonce(), wp_create_nonce(), rest_url(), get_post(), wp_create_nonce(), current_theme_supports(), post_type_supports(), wp_attachment_is(), wp_attachment_is(), post_type_supports(), current_theme_supports(), get_post_meta(), get_post_type_object(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), _x(), _x(), _x(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), apply_filters(), apply_filters(), wp_enqueue_script(), wp_localize_script(), wp_enqueue_script(), wp_enqueue_style(), is_admin(), wp_enqueue_script(), wp_enqueue_script(), wp_enqueue_style(), wp_plupload_default_settings(), add_action(), add_action(), add_action(), do_action() |
This body has more branch combinations than are worth enumerating, so the table covers the outcomes found first rather than every one that exists.
Across PHP versions
| PHP | Compiled | Executed | Branches | Notes |
|---|---|---|---|---|
| 8.6-dev | 766 | 599–682 | 29 | |
| 8.5 | 766 | 599–682 | 29 | |
| 8.4 | 766 | 599–682 | 29 | 3 fewer instructions than PHP 8.3 |
| 8.3 | 769 | 599–682 | 29 | |
| 8.2 | 769 | 599–682 | 29 | |
| 8.1 | 769 | 599–682 | 29 | |
| 7.4 | 769 | 599–682 | 29 |
An instruction is not a fixed amount of time, so a matching count is not necessarily the same speed; what it rules out is a difference in the work itself.
Hooks and filters fired · 9
9 hooks fire while wp_enqueue_media() runs, in this order:
- apply_filters( media_upload_tabs )filterline 4949 (+26 into the body)
Filters the available tabs in the legacy (pre-3.5.0) media popup.
- apply_filters( media_library_show_audio_playlist )filterline 4987 (+64 into the body)
Allows showing or hiding the "Create Audio Playlist" button in the media library.
- apply_filters( media_library_show_video_playlist )filterline 5015 (+92 into the body)
Allows showing or hiding the "Create Video Playlist" button in the media library.
- apply_filters( media_library_months_with_files )filterline 5041 (+118 into the body)
Allows overriding the list of months displayed in the media library.
- apply_filters( media_library_infinite_scrolling )filterline 5080 (+157 into the body)
Filters whether the Media Library grid has infinite scrolling. Default `true`.
- apply_filters( disable_captions )filterline 5087 (+164 into the body)
Filters whether to disable captions.
- apply_filters( media_view_settings )filterline 5282 (+359 into the body)
Filters the media view settings.
- apply_filters( media_view_strings )filterline 5292 (+369 into the body)
Filters the media view strings.
- do_action( wp_enqueue_media )actionline 5322 (+399 into the body)
Fires at the conclusion of wp_enqueue_media().
Uses · 29
- did_action()Retrieves the number of times an action has been fired during the current request.
- wp_parse_args()Merges user defined arguments into defaults array.
- apply_filters()Calls the callback functions that have been added to a filter hook.
- get_option()Retrieves an option value based on an option name.
- wp_get_audio_extensions()Returns a filtered list of supported audio formats.
- wp_get_video_extensions()Returns a filtered list of supported video formats.
- get_allowed_mime_types()Retrieves the list of allowed mime types and file extensions.
- __()Retrieves the translation of $text.
- get_user_option()Retrieves user option that can be either per Site or per Network.
- add_query_arg()Retrieves a modified URL query string.
- admin_url()Retrieves the URL to the admin area for the current site.
- wp_list_pluck()Plucks a certain field out of each object or array in an array.
Show all 29
- get_post_mime_types()Gets default post mime types.
- wp_create_nonce()Creates a cryptographic token tied to a specific action, user, user session, and window of time.
- rest_url()Retrieves the URL to a REST endpoint.
- get_post()Retrieves post data given a post ID or post object.
- current_theme_supports()Checks a theme's support for a given feature.
- post_type_supports()Checks a post type's support for a given feature.
- wp_attachment_is()Verifies an attachment is of a given type.
- get_post_meta()Retrieves a post meta field for the given post ID.
- get_post_type_object()Retrieves a post type object by name.
- _x()Retrieves translated string with gettext context.
- wp_enqueue_script()Enqueues a script.
- wp_localize_script()Localizes a script.
- wp_enqueue_style()Enqueues a CSS stylesheet.
- is_admin()Determines whether the current request is for an administrative interface page.
- wp_plupload_default_settings()Prints default Plupload arguments.
- add_action()Adds a callback function to an action hook.
- do_action()Calls the callback functions that have been added to an action hook.
Used by · 7
- Custom_Background::admin_load()Sets up the enqueue for the CSS & JavaScript files.
- Custom_Image_Header::js_includes()Sets up the enqueue for the JavaScript files.
- WP_Customize_Header_Image_Control::enqueue()Enqueues control related scripts/styles.
- WP_Customize_Media_Control::enqueue()Enqueue control related scripts/styles.
- WP_Widget_Media::enqueue_admin_scripts()Loads the required scripts and styles for the widget control.
- WP_Widget_Text::enqueue_admin_scripts()Loads the required scripts and styles for the widget control.
- media_buttons()Adds the media button to the editor.
Source code
function wp_enqueue_media( $args = array() ) { // Enqueue me just once per page, please. if ( did_action( 'wp_enqueue_media' ) ) { return; } global $content_width, $wpdb, $wp_locale; $defaults = array( 'post' => null, ); $args = wp_parse_args( $args, $defaults ); /* * We're going to pass the old thickbox media tabs to `media_upload_tabs` * to ensure plugins will work. We will then unset those tabs. */ $tabs = array( // handler action suffix => tab label 'type' => '', 'type_url' => '', 'gallery' => '', 'library' => '', ); /** This filter is documented in wp-admin/includes/media.php */ $tabs = apply_filters( 'media_upload_tabs', $tabs ); unset( $tabs['type'], $tabs['type_url'], $tabs['gallery'], $tabs['library'] ); $props = array( 'link' => get_option( 'image_default_link_type' ), // DB default is 'file'. 'align' => get_option( 'image_default_align' ), // Empty default. 'size' => get_option( 'image_default_size' ), // Empty default. ); $exts = array_merge( wp_get_audio_extensions(), wp_get_video_extensions() ); $mimes = get_allowed_mime_types(); $ext_mimes = array(); foreach ( $exts as $ext ) { foreach ( $mimes as $ext_preg => $mime_match ) { if ( preg_match( '#' . $ext . '#i', $ext_preg ) ) { $ext_mimes[ $ext ] = $mime_match; break; } } } /** * Allows showing or hiding the "Create Audio Playlist" button in the media library. * * By default, the "Create Audio Playlist" button will always be shown in * the media library. If this filter returns `null`, a query will be run * to determine whether the media library contains any audio items. This * was the default behavior prior to version 4.8.0, but this query is * expensive for large media libraries. * * @since 4.7.4 * @since 4.8.0 The filter's default value is `true` rather than `null`. * * @link https://core.trac.wordpress.org/ticket/31071 * * @param bool|null $show Whether to show the button, or `null` to decide based * on whether any audio files exist in the media library. */ $show_audio_playlist = apply_filters( 'media_library_show_audio_playlist', true ); if ( null === $show_audio_playlist ) { $show_audio_playlist = $wpdb->get_var( "SELECT ID FROM $wpdb->posts WHERE post_type = 'attachment' AND post_mime_type LIKE 'audio%' LIMIT 1" ); } /** * Allows showing or hiding the "Create Video Playlist" button in the media library. * * By default, the "Create Video Playlist" button will always be shown in * the media library. If this filter returns `null`, a query will be runChangelog
Introduced in 3.5.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 7.1.0 tag, from
src/wp-includes/media.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it. - Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.