You appear to be a bot. Output may be restricted
Description
Customizes the field title- Applies the "oik_form_field_title_${field_name}" filter(s)
- Appends any 'hint'
Usage
$string = bw_l10n_field_title( $field_name, $field_title, $field_type, $field_value, $args );
Parameters
- $field_name
- ( string ) required – The field name
- $field_title
- ( string ) required – the translated field title
- $field_type
- ( string ) required – the field type
- $field_value
- ( string ) required – the current field value
- $args
- ( array ) optional – additional parameters
Returns
string customized field titleTO DO
Or use the value specified in the $argsSource
File name: oik/includes/bw_metadata.phpLines:
1 to 5 of 5
function bw_l10n_field_title( $field_name, $field_title, $field_type, $field_value, $args=null ) { $field_title = apply_filters( "oik_form_field_title_{$field_name}", $field_title, $field_type ); $field_title = _bw_form_field_title( $field_title, $args ); return( $field_title ); }View on GitHub View on Trac