PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins
/
wp-job-manager
/
templates
/
form-fields
<?php /** * Shows the `recaptcha` form field on job listing forms. * * This template can be overridden by copying it to yourtheme/job_manager/form-fields/recaptcha-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. } ?> <fieldset class="fieldset-<?php echo esc_attr( $key ); ?>"> <label for="<?php echo esc_attr( $key ); ?>"><?php echo esc_html( $field['label'] ); ?></label> <div class="field <?php echo $field['required'] ? 'required-field' : ''; ?>"> <div class="g-recaptcha" data-sitekey="<?php echo esc_attr( $field['site_key'] ); ?>"></div> <?php if ( ! empty( $field['description'] ) ) : ?><small class="description"><?php echo wp_kses_post( $field['description'] ); ?></small><?php endif; ?> </div> </fieldset>
[+]
..
[-] date-field.php
[edit]
[-] recaptcha-field.php
[edit]
[-] text-field.php
[edit]
[-] term-multiselect-field.php
[edit]
[-] select-field.php
[edit]
[-] radio-field.php
[edit]
[-] uploaded-file-html.php
[edit]
[-] checkbox-field.php
[edit]
[-] multiselect-field.php
[edit]
[-] textarea-field.php
[edit]
[-] password-field.php
[edit]
[-] term-checklist-field.php
[edit]
[-] wp-editor-field.php
[edit]
[-] file-field.php
[edit]
[-] term-select-field.php
[edit]