表单中需要Wordpress文本编辑器字段

时间:2016-08-12 05:28:01

标签: javascript php jquery wordpress forms

请帮我修改下面的文本编辑器,并通过JavaScript或任何HTML内容以条件要求的功能进行修复。

我在前端使用wp编辑器字段为求职者上传简历。但是我希望这个字段是必需的(*)所以在此表格空白之前不会提交表格。

$editor_id = 'resume_content';    
$editor_css = '

<style>
    .wp-editor-container{
        border: 1px solid #e5e5e5;
        -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
        box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    }

    .wp-switch-editor,
    .tmce-active .switch-tmce, .html-active .switch-html{
        height:25px;
    }
</style>';

wp_editor( $default['resume_content'], $editor_id, array( 'editor_class' => 'form-control', 'media_buttons' => false, 'editor_css' => $editor_css,  ) );

2 个答案:

答案 0 :(得分:0)

请使用。

<?php wp_editor( $listing->post_content, 'listingeditor', $settings = array('textarea_name' => post_content) ); ?>

答案 1 :(得分:0)

您可以使用过滤功能:

add_filter("the_editor", "add_required");

function add_required($editor){

  $editor =  str_replace( '<textarea', '<textarea required="required"', $editor );
  return $editor;

}