PluginProbe
Tag Groups is the Advanced Way to Display Your Taxonomy Terms / trunk
Tag Groups is the Advanced Way to Display Your Taxonomy Terms vtrunk
2.2.2 2.2.1 2.2.0 trunk 1.40.0 1.40.2 1.41.0 1.42.1 1.43.0 1.43.1 1.43.10 1.43.10.1 1.43.2 1.43.3 1.43.4 1.43.5 1.43.6 1.43.7 1.43.9 1.44.0 1.44.1 1.44.3 1.44.3.1 2.0.0 2.0.1 All 36 releases
tag-groups / views / partials / admin_notice.view.php

admin_notice.view.php in Tag Groups is the Advanced Way to Display Your Taxonomy Terms trunk, at views/partials/admin_notice.view.php

23 lines 779 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div class="notice notice-<?php echo esc_attr($notice['type']) ?> is-dismissible" style="clear:both;">
2 <?php echo wp_kses_post($notice['content']) ?>
3 <div style="clear:both;"></div>
4 </div>
5 <?php if ('' != $ajax_link) : ?>
6 <script>
7 jQuery(document).ready(function(){
8 jQuery("#tag_groups_premium_clear_cache").on('click', function(){
9 jQuery("#tag_groups_premium_clear_cache").attr("disabled", "disabled");
10 jQuery.ajax({
11 url: "<?php echo esc_url($ajax_link) ?>",
12 data: {
13 action: "tg_ajax_clear_object_cache",
14 },
15 success: function( data ) {
16 jQuery("#tag_groups_premium_clear_cache").replaceWith("<span class=\'dashicons dashicons-yes\'></span>");
17 }
18 });
19 });
20 });
21 </script>
22 <?php endif; ?>
23