PluginProbe
Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF / 1.4
Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF v1.4
2.3.4 2.3.3 2.3.2 2.3.1 2.3.0 2.2.9 2.2.8 trunk 1.10 1.3.3 1.3.4 1.3.5 1.3.5.1 1.3.5.2 1.3.6 1.3.6.1 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.5 All 103 releases
imagify / inc / admin / media.php

media.php in Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF 1.4, at inc/admin/media.php

25 lines 678 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 defined( 'ABSPATH' ) or die( 'Cheatin\' uh?' );
3
4 /*
5 * Add "Imagify" column in the Media Uploader
6 *
7 * @since 1.2
8 */
9 add_filter( 'attachment_fields_to_edit', '_imagify_attachment_fields_to_edit', PHP_INT_MAX, 2 );
10 function _imagify_attachment_fields_to_edit( $form_fields, $post ) {
11 global $pagenow;
12 if ( 'post.php' == $pagenow ) {
13 return $form_fields;
14 }
15
16 $form_fields['imagify'] = array(
17 'label' => 'Imagify',
18 'input' => 'html',
19 'html' => get_imagify_media_column_content( $post->ID ),
20 'show_in_edit' => true,
21 'show_in_modal' => true,
22 );
23
24 return $form_fields;
25 }