Changeset 46603 for trunk/src/wp-includes/media.php
- Timestamp:
- 10/27/2019 07:09:10 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media.php
r46596 r46603 636 636 * @since 5.3.0 637 637 * 638 * @param bool The filtered value.639 * @param int Original image width.640 * @param int Original image height.638 * @param bool $proceed The filtered value. 639 * @param int $orig_w Original image width. 640 * @param int $orig_h Original image height. 641 641 */ 642 642 $proceed = (bool) apply_filters( 'wp_image_resize_identical_dimensions', false, $orig_w, $orig_h ); … … 3697 3697 * @link https://core.trac.wordpress.org/ticket/31071 3698 3698 * 3699 * @param bool|null Whether to show the button, or `null` to decide based3700 * on whether any audio files exist in the media library.3699 * @param bool|null $show Whether to show the button, or `null` to decide based 3700 * on whether any audio files exist in the media library. 3701 3701 */ 3702 3702 $show_audio_playlist = apply_filters( 'media_library_show_audio_playlist', true ); … … 3727 3727 * @link https://core.trac.wordpress.org/ticket/31071 3728 3728 * 3729 * @param bool|null Whether to show the button, or `null` to decide based3730 * on whether any video files exist in the media library.3729 * @param bool|null $show Whether to show the button, or `null` to decide based 3730 * on whether any video files exist in the media library. 3731 3731 */ 3732 3732 $show_video_playlist = apply_filters( 'media_library_show_video_playlist', true ); … … 3755 3755 * @link https://core.trac.wordpress.org/ticket/31071 3756 3756 * 3757 * @param array|null An array of objects with `month` and `year`3758 * properties, or `null` (or any other non-array value)3759 * for default behavior.3757 * @param array|null $months An array of objects with `month` and `year` 3758 * properties, or `null` (or any other non-array value) 3759 * for default behavior. 3760 3760 */ 3761 3761 $months = apply_filters( 'media_library_months_with_files', null );
Note: See TracChangeset
for help on using the changeset viewer.