PATH:
home
/
letacommog
/
entrepro
/
wp-content
/
plugins
/
wp-all-import-pro
/
views
/
admin
/
import
/
template
<?php $custom_type = get_taxonomy($post['taxonomy_type']); if (empty($custom_type)){ $custom_type = new stdClass(); $custom_type->labels = new stdClass(); $custom_type->labels->name = __('Taxonomy Terms', 'wp_all_import_plugin'); $custom_type->labels->singular_name = __('Taxonomy Term', 'wp_all_import_plugin'); } ?> <div class="wpallimport-collapsed closed wpallimport-section "> <div class="wpallimport-content-section "> <div class="wpallimport-collapsed-header"> <h3><?php printf(__('Other %s Options','wp_all_import_plugin'), $custom_type->labels->singular_name);?></h3> </div> <div class="wpallimport-collapsed-content" style="padding: 0;"> <div class="wpallimport-collapsed-content-inner"> <table class="form-table" style="max-width:none;"> <?php if ($custom_type->hierarchical): ?> <tr> <td> <h4><?php _e('Parent Term', 'wp_all_import_plugin'); ?> <a class="wpallimport-help" href="#help" style="position:relative; top:-1px;" original-title="If your taxonomies have parent/child relationships, use this field to set the parent for the imported taxonomy term. Terms can be matched by slug, name, or ID.">?</a></h4> <div> <input type="text" name="taxonomy_parent" style="width:100%;" value="<?php echo esc_attr($post['taxonomy_parent']); ?>" placeholder="<?php echo __('Parent term', 'wp_all_import_plugin'); ?>"/> </div> </td> </tr> <?php endif; ?> <tr> <td> <input type="hidden" name="encoding" value="<?php echo ($this->isWizard) ? PMXI_Plugin::$session->encoding : $post['encoding']; ?>"/> <input type="hidden" name="delimiter" value="<?php echo ($this->isWizard) ? PMXI_Plugin::$session->is_csv : $post['delimiter']; ?>"/> <h4><?php printf(__('%s Slug', 'wp_all_import_plugin'), $custom_type->labels->singular_name); ?></h4> <div class="input"> <input type="radio" id="taxonomy_slug_auto" name="taxonomy_slug" value="auto" <?php echo 'auto' == $post['taxonomy_slug'] ? 'checked="checked"' : '' ?> class="switcher"/> <label for="taxonomy_slug_auto"><?php _e('Set slug automatically', 'wp_all_import_plugin') ?></label> </div> <div class="input fleft" style="position:relative;width:220px;"> <input type="radio" id="taxonomy_slug_xpath" class="switcher" name="taxonomy_slug" value="xpath" <?php echo 'xpath' == $post['taxonomy_slug'] ? 'checked="checked"': '' ?>/> <label for="taxonomy_slug_xpath"><?php _e('Set slug manually', 'wp_all_import_plugin' )?></label> <br> <div class="switcher-target-taxonomy_slug_xpath"> <div class="input"> <input type="text" class="smaller-text" name="taxonomy_slug_xpath" style="width:190px;" value="<?php echo esc_attr($post['taxonomy_slug_xpath']) ?>" placeholder="<?php echo __('Term Slug', 'wp_all_import_plugin'); ?>"/> <a href="#help" class="wpallimport-help" title="<?php _e('The term slug must be unique. If the slug is already in use by another term, WP All Import will add a number to the end of the slug.', 'wp_all_import_plugin') ?>" style="position:relative; top:13px; float: right;">?</a> </div> </div> </div> <div class="clear"></div> </td> </tr> </table> </div> </div> </div> </div>
[+]
..
[-] _nested_template.php
[edit]
[-] _custom_fields_template.php
[edit]
[-] _taxonomies_template.php
[edit]
[-] _other_template.php
[edit]
[-] _term_other_template.php
[edit]
[-] _featured_template.php
[edit]
[-] _term_meta_template.php
[edit]