Start Theme Repo
This commit is contained in:
11
views/pieces/submissions/fields/authors.twig
Normal file
11
views/pieces/submissions/fields/authors.twig
Normal file
@@ -0,0 +1,11 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user