0

我的 WordPress 主题中有一个选项面板,其中包含多个文本字段。例如:项目名称、项目描述、推特用户名等。

case 'text':
    $val = $value['std'];
    $std = get_option($value['id']);
    if ( $std != "") { $val = $std; }
    $output .= '<input class="" maxlength="12" name=""'. $value['id'] .'" id="'. $value['id'] .'" type="'. $value['type'] .'" value="'. $val .'" />';
break;

如上面的代码所示......我目前将文本字段的最大长度设置为 12,但我希望每个文本字段的最大长度都不同。我怎样才能做到这一点?

文本字段的输入 ID 是 mytheme_projectitle1、mytheme_projectitle2、mytheme_projectitle3、mytheme_twitterusername 等。我没有任何输入类,只有 ID。

4

1 回答 1

0

$value['id']从代码中可以看出,您可以访问每个元素的 id 。使用它来导出最大长度,例如这样:

case 'text':
    // Overrides for the default value of maxlength
    $maxlengths = array(
        'mytheme_projecttitle1' => 10,
        'mytheme_projecttitle2' => 20,
    );

    // If there is an override value use it; otherwise use the default of 12
    $maxlen = isset($maxlengths[$value['id']]) ? $maxlengths[$value['id']] : 12;

    $val = $value['std'];
    $std = get_option($value['id']);
    if ( $std != "") { $val = $std; }

    $output .= '<input class="" maxlength="'.$maxlength.'"..."; // the rest as before
于 2012-11-10T17:16:15.260 回答