PluginProbe ʕ •ᴥ•ʔ
Interactive Image Map Builder / 2.2
Interactive Image Map Builder v2.2
3.2 trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 2.9 3.0 3.1
interactive-image-map-builder / settings / wpmart-plugins.php
interactive-image-map-builder / settings Last commit date
css 2 years ago add-point-html.php 2 years ago builder.php 2 years ago edit-point-html.php 2 years ago form.php 1 year ago how-to-use.php 2 years ago import-export-plugins.php 2 years ago nested-point.php 2 years ago plugin-settings.php 2 years ago save.php 2 years ago template-settings.php 2 years ago wpmart-plugins.php 2 years ago
wpmart-plugins.php
28 lines
1 <?php
2 if (!defined('ABSPATH'))
3 exit;
4
5 ?>
6 <div class="isimb-6310">
7 <div class="isimb-6310-row isimb-6310-row-plugins">
8 <h1 class="isimb-6310-wpmart-all-plugins">WpMart Plugins</h1>
9 </div>
10 </div>
11
12 <script>
13 jQuery.getJSON('https://demo.tcsesoft.com/plugins/', function(data) {
14 let htmlCode = '';
15 for(let i = 0; i < data.length; i++) {
16 htmlCode += `
17 <div class="isimb-6310-col-3">
18 <div class="isimb-6310-wpmart-plugins">
19 <a href="${data[i].url}" target="_blank">
20 <img src="${data[i].image}" alt="${data[i].title}" class="isimb-image-responsive">
21 <p>${data[i].title}</p>
22 </a>
23 </div>
24 </div>`;
25 }
26 jQuery('.isimb-6310-wpmart-all-plugins').after(htmlCode);
27 });
28 </script>