mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-25 04:13:44 +03:00
18 lines
296 B
PHP
18 lines
296 B
PHP
<?php
|
|
namespace WordPressDotOrg\FiveForTheFuture\View;
|
|
|
|
/** @var bool $editable */
|
|
/** @var array $data */
|
|
?>
|
|
|
|
<div class="form-field">
|
|
<label for="5ftf-org-logo">
|
|
<?php esc_html_e( 'Logo', 'wordpressorg' ); ?>
|
|
</label>
|
|
<input
|
|
type="file"
|
|
id="5ftf-org-logo"
|
|
name="org-logo"
|
|
/>
|
|
</div>
|