rwmb_file_edit_string

rwmb_file_edit_string

Hook Type: filter

See hook in core

Displaying hooks found in version: wp-stateless.4.1.2

apply_filters('rwmb_file_edit_string') is found 1 times:

  • /vendor/wpmetabox/meta-box/inc/fields/file.php line 167
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    * @return string
     */
    protected static function file_html( $file, $index, $field ) {
        $i18n_delete = apply_filters( 'rwmb_file_delete_string', _x( 'Delete', 'file upload', 'meta-box' ) );
        $i18n_edit   = apply_filters( 'rwmb_file_edit_string', _x( 'Edit', 'file upload', 'meta-box' ) );
        $attributes  = self::get_attributes( $field, $file );
     
        if ( ! $file ) {
            return '';
        }