wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
__checked_selected_helper is private and should not be used in themes or plugins directly.
__checked_selected_helper › WordPress Function
Seit2.8.0
Veraltetn/v
› __checked_selected_helper ( $helper, $current, $display, $type )
Zugriff: |
|
Parameter: (4) |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Private helper function for checked, selected, disabled and readonly.
Compares the first two arguments and if identical marks as$type
.Ähnliche Funktionen: wp_check_filetype, wp_cache_delete_multiple, wp_scheduled_delete, delete_theme, wp_ajax_delete_theme
Quellcode
function __checked_selected_helper( $helper, $current, $display, $type ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionDoubleUnderscore,PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.FunctionDoubleUnderscore if ( (string) $helper === (string) $current ) { $result = " $type='$type'"; } else { $result = ''; } if ( $display ) { echo $result; } return $result; }