WordPress文本字段输入只有Inter值吗?

时间:2011-06-23 作者:Webd106

全部的

现在我正在使用WordPress,现在我有一个问题,我如何才能使我的文本字段输入值有效。这是我的密码

<p>
  <label for="<?php echo $this->get_field_id(\'num_post\'); ?>">
    <?php _e( \'Number of posts to show:\' ); ?>
    <input id="<?php echo $this->get_field_id( \'num_post\' ); ?>" name="<?php echo $this->get_field_name( \'num_post\' ); ?>" type="text" value="<?php echo   $instance[\'num_post\']; ?>" size="3" />
  </label>
</p>

1 个回复
SO网友:mfields

<?php print (int) $instance[\'num_post\']; ?>
或者可能:

<?php print absint( $instance[\'num_post\'] ); ?>
使用第二个以避免负值。

结束

相关推荐

Why use widgets?

我对使用WordPress很陌生,我想知道使用小部件的好处是什么?看here 这听起来像是为那些不是程序员的人准备的,他们想在他们的网站上添加插件。对吗?或者小部件是否在某种程度上使站点更加健壮?