73 lines
3.6 KiB
PHP
73 lines
3.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Categories: Custom Fields.
|
|
*
|
|
* @link https://plugins360.com
|
|
* @since 1.0.0
|
|
*
|
|
* @package All_In_One_Video_Gallery
|
|
*/
|
|
?>
|
|
|
|
<?php if ( 'add' == $form ) : ?>
|
|
<div class="aiovg form-field term-image-group">
|
|
<label for="aiovg-categories-image"><?php esc_html_e( 'Image', 'all-in-one-video-gallery' ); ?></label>
|
|
|
|
<div id="aiovg-categories-image-wrapper"></div>
|
|
|
|
<input type="hidden" name="image" id="aiovg-categories-image" />
|
|
<input type="hidden" name="image_id" id="aiovg-categories-image_id" />
|
|
<?php wp_nonce_field( 'aiovg_save_category_fields', 'aiovg_category_fields_nonce' ); // Nonce ?>
|
|
|
|
<p>
|
|
<input type="button" id="aiovg-categories-upload-image" class="button button-secondary" value="<?php esc_attr_e( 'Upload Image', 'all-in-one-video-gallery' ); ?>" />
|
|
<input type="button" id="aiovg-categories-remove-image" class="button button-secondary" value="<?php esc_attr_e( 'Remove Image', 'all-in-one-video-gallery' ); ?>" style="display: none;" />
|
|
</p>
|
|
</div>
|
|
|
|
<div class="aiovg form-field term-exclude_search_form-group">
|
|
<label>
|
|
<input type="checkbox" name="exclude_search_form" id="aiovg-categories-exclude_search_form" value="1" />
|
|
<?php esc_html_e( 'Exclude in Search Form', 'all-in-one-video-gallery' ); ?>
|
|
</label>
|
|
|
|
<p class="description">
|
|
<?php esc_html_e( 'Exclude this category in the front-end search form.', 'all-in-one-video-gallery' ); ?>
|
|
</p>
|
|
</div>
|
|
<?php elseif ( 'edit' == $form ) : ?>
|
|
<tr class="aiovg form-field term-image-wrap">
|
|
<th scope="row">
|
|
<label for="aiovg-categories-image"><?php esc_html_e( 'Image', 'all-in-one-video-gallery' ); ?></label>
|
|
</th>
|
|
<td>
|
|
<div id="aiovg-categories-image-wrapper">
|
|
<?php if ( $image ) : ?>
|
|
<img src="<?php echo esc_url( $image ); ?>" alt="" />
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
<input type="hidden" name="image" id="aiovg-categories-image" value="<?php echo esc_attr( $image ); ?>" />
|
|
<input type="hidden" name="image_id" id="aiovg-categories-image_id" value="<?php echo esc_attr( $image_id ); ?>" />
|
|
<?php wp_nonce_field( 'aiovg_save_category_fields', 'aiovg_category_fields_nonce' ); // Nonce ?>
|
|
|
|
<p>
|
|
<input type="button" id="aiovg-categories-upload-image" class="button button-secondary" value="<?php esc_attr_e( 'Upload Image', 'all-in-one-video-gallery' ); ?>" <?php if ( $image ) echo 'style="display: none;"'; ?>/>
|
|
<input type="button" id="aiovg-categories-remove-image" class="button button-secondary" value="<?php esc_attr_e( 'Remove Image', 'all-in-one-video-gallery' ); ?>" <?php if ( ! $image ) echo 'style="display: none;"'; ?>/>
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr class="aiovg form-field term-exclude_search_form-wrap">
|
|
<th scope="row">
|
|
<label for="aiovg-categories-exclude_search_form"><?php esc_html_e( 'Exclude in Search Form', 'all-in-one-video-gallery' ); ?></label>
|
|
</th>
|
|
<td>
|
|
<label>
|
|
<input type="checkbox" name="exclude_search_form" id="aiovg-categories-exclude_search_form" value="1" <?php checked( $exclude_search_form, 1 ); ?> />
|
|
<?php esc_html_e( 'Exclude this category in the front-end search form.', 'all-in-one-video-gallery' ); ?>
|
|
</label>
|
|
</td>
|
|
</tr>
|
|
<?php endif;
|