我正在尝试找出如何在前端提交表单的资源框中组合此代码,但我需要将其限制为一定数量的字符。
<?php wp_editor( get_option('resource'), 'resource', array('textarea_name' => 'resource', 'class'=>'requiredField', 'textarea_rows'=>'6','id'=>'resource' ,'onkeyup'=>'countChar(this)','media_buttons' => false) );?><?php if(isset($_POST['resource'])) { if(function_exists('stripslashes')) { echo stripslashes($_POST['resource']); } else { echo $_POST['resource']; } } ?>
此代码检查该字段是否为空:
<?php if(isset($_POST['resource'])) { if(function_exists('stripslashes')) { echo stripslashes($_POST['resource']); } else { echo $_POST['resource']; } } ?>
如何在 wp_editor 函数中进行检查?我需要这个来允许和简化我的资源框中的 html 给用户......
这是我在里面使用的 javascript 函数 ('onkeyup'=>'countChar(this)') 但它不起作用。
我在这里坠落吗?