Пример #1
0
function wpjb_form_input_hint(Daq_Form_Element $e, $tag = "small", $class = "wpjb-hint")
{
    $hint = $e->getHint();
    if (!empty($hint)) {
        $hint = esc_html($hint);
        echo "<{$tag} class=\"{$class}\">{$hint}</{$tag}>";
    }
}