File "widget-form.html.php"

Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/publishpress-authors/src/views/widget-form.html.php
File size: 1.49 B
MIME-type: text/plain
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

<p>
    <label for="<?php echo esc_attr($context['ids']['title']); ?>"><?php esc_html_e($context['labels']['title']); ?></label>
    <input class="widefat" id="<?php echo esc_attr($context['ids']['title']); ?>" name="<?php echo esc_attr($context['names']['title']); ?>" type="text"
           value="<?php echo esc_attr($context['values']['title']); ?>">

    <label for="<?php echo esc_attr($context['ids']['title_plural']); ?>"><?php esc_html_e($context['labels']['title_plural']); ?></label>
    <input class="widefat" id="<?php echo esc_attr($context['ids']['title_plural']); ?>" name="<?php echo esc_attr($context['names']['title_plural']); ?>" type="text" value="<?php echo esc_attr($context['values']['title_plural']); ?>">

</p>

<p>
    <label for="<?php echo esc_attr($context['ids']['layout']); ?>"><?php esc_html_e($context['labels']['layout']); ?></label>

    <select id="<?php echo esc_attr($context['ids']['layout']); ?>" name="<?php echo esc_attr($context['names']['layout']); ?>">
        <?php foreach ($context['layouts'] as $layout => $label) : ?>
            <option value="<?php echo esc_attr($layout); ?>"
                <?php selected($layout, $context['values']['layout']); ?>
            ><?php esc_html_e($label); ?></option>
        <?php endforeach; ?>
    </select>
</p>

<input type="hidden" id="<?php echo esc_attr($context['ids']['nonce']); ?>" name="<?php echo esc_attr($context['names']['nonce']); ?>" value="<?php echo esc_attr($context['values']['nonce']); ?>"/>