Start Theme Repo

This commit is contained in:
2026-01-29 19:10:03 +01:00
commit 101179e994
84 changed files with 14654 additions and 0 deletions

View 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>