如果可能的话,我想用wp编辑器替换wordpress插件中的textarea。以下是文本区号:
<textarea id="<?php echo esc_attr( $html[\'id\'] ); ?>" class="awpcp-textarea required" <?php echo $html[\'readonly\'] ? \'readonly="readonly"\' : \'\'; ?> name="<?php echo esc_attr( $html[\'name\'] ); ?>" rows="10" cols="50" data-max-characters="<?php echo esc_attr( $characters_allowed ); ?>" data-remaining-characters="<?php echo esc_attr( $remaining_characters ); ?>"><?php /* Content alerady escaped if necessary. Do not escape again here! */ echo $value; ?></textarea>
我将感谢任何人的帮助。我本身不是一个编码员。提前感谢您的帮助。
皮特