PluginProbe ʕ •ᴥ•ʔ
WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel / trunk
WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel vtrunk
trunk 0.9.0 0.9.1 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.0 1.2.1 1.2.10 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 1.4.13 1.4.14 1.4.15 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.5.0
wp-all-export / views / admin / manage / templates.php
wp-all-export / views / admin / manage Last commit date
bulk.php 1 month ago delete.php 1 month ago index.php 1 month ago scheduling.php 1 month ago templates.php 1 month ago update.php 1 month ago
templates.php
19 lines
1 <?php
2 // phpcs:ignoreFile WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- variables in template files inherited from controller render() scope
3 if(!defined('ABSPATH')) {
4 die();
5 }
6 ?>
7 <div class="wrap download-import-templates">
8 <h2><?php esc_html_e('Download Import Templates', 'wp-all-export') ?></h2>
9 <p class="description"><?php esc_html_e('Download your import templates and use them to import your exported file to a separate WordPress/WP All Import installation.', 'wp-all-export'); ?></p>
10 <p class="description"><?php echo wp_kses(__('Install these import templates in your separate WP All Import installation from the <i>All Import › Settings</i> page by clicking the "Import Templates" button.', 'wp-all-export'), array('i' => array())); ?></p>
11 <p class="submit-buttons">
12 <a class="button-primary" href='<?php echo esc_url(add_query_arg(array('id' => $item['id'], 'action' => 'get_template', '_wpnonce' => wp_create_nonce( '_wpnonce-download_template' )), $this->baseUrl));?>'>Download</a>
13 </p>
14 <img src="<?php echo esc_url( PMXE_ROOT_URL ); ?>/static/img/import-templates.png" width="400px" style="border: 1px solid #aaa;">
15 <div class="wpallexport-display-columns wpallexport-margin-top-forty">
16 <?php // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- plugin-owned filter output; callback in filters/wpallexport_footer.php returns trusted static HTML
17 echo apply_filters('wpallexport_footer', ''); ?>
18 </div>
19 </div>