PATH:
home
/
letacommog
/
aacote
/
wp-content
/
plugins
/
wp-job-manager
/
templates
/
form-fields
<?php /** * Shows the right `textarea` form field with WP Editor on job listing forms. * * This template can be overridden by copying it to yourtheme/job_manager/form-fields/wp-editor-field.php. * * @see https://wpjobmanager.com/document/template-overrides/ * @author Automattic * @package WP Job Manager * @category Template * @version 1.31.1 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } $editor = apply_filters( 'submit_job_form_wp_editor_args', array( 'textarea_name' => isset( $field['name'] ) ? $field['name'] : $key, 'media_buttons' => false, 'textarea_rows' => 8, 'quicktags' => false, 'tinymce' => array( 'plugins' => 'lists,paste,tabfocus,wplink,wordpress', 'paste_as_text' => true, 'paste_auto_cleanup_on_paste' => true, 'paste_remove_spans' => true, 'paste_remove_styles' => true, 'paste_remove_styles_if_webkit' => true, 'paste_strip_class_attributes' => true, 'toolbar1' => 'bold,italic,|,bullist,numlist,|,link,unlink,|,undo,redo', 'toolbar2' => '', 'toolbar3' => '', 'toolbar4' => '' ), ) ); wp_editor( isset( $field['value'] ) ? wp_kses_post( $field['value'] ) : '', $key, $editor ); if ( ! empty( $field['description'] ) ) : ?><small class="description"><?php echo wp_kses_post( $field['description'] ); ?></small><?php endif; ?>
[+]
..
[-] file-field.php
[edit]
[-] wp-editor-field.php
[edit]
[-] select-field.php
[edit]
[-] uploaded-file-html.php
[edit]
[-] term-multiselect-field.php
[edit]
[-] multiselect-field.php
[edit]
[-] term-checklist-field.php
[edit]
[-] recaptcha-field.php
[edit]
[-] term-select-field.php
[edit]
[-] password-field.php
[edit]
[-] text-field.php
[edit]
[-] textarea-field.php
[edit]
[-] date-field.php
[edit]
[-] checkbox-field.php
[edit]
[-] radio-field.php
[edit]