11 lines
453 B
Twig
11 lines
453 B
Twig
<label for="author-name">
|
|
{{ __( "Authors:", 'romhackplaza') }}
|
|
</label>
|
|
<span class="field-helper">
|
|
{{ __( "Person or Group who created this, if it's you add/select yourself.", 'romhackplaza' ) }}
|
|
</span>
|
|
<select id="author-name" name="author-name[]" multiple="multiple" required>
|
|
{% for author in value_authors %}
|
|
<option value="{{ author.term_id|esc_attr }}" selected>{{ author.name|esc_html }}</option>
|
|
{% endfor %}
|
|
</select> |