PluginProbe
Image Hotspot – Map Image Annotation / trunk
Image Hotspot – Map Image Annotation vtrunk
3.8 3.7 3.6 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 All 30 releases
image-map-hotspots / settings / wpmart-plugins.php

wpmart-plugins.php in Image Hotspot – Map Image Annotation trunk, at settings/wpmart-plugins.php

28 lines 833 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if (!defined('ABSPATH'))
3 exit;
4
5 ?>
6 <div class="imh-6310">
7 <div class="imh-6310-row imh-6310-row-plugins">
8 <h1 class="imh-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="imh-6310-col-3">
18 <div class="imh-6310-wpmart-plugins">
19 <a href="${data[i].url}" target="_blank">
20 <img src="${data[i].image}" alt="${data[i].title}" class="ima-image-responsive">
21 <p>${data[i].title}</p>
22 </a>
23 </div>
24 </div>`;
25 }
26 jQuery('.imh-6310-wpmart-all-plugins').after(htmlCode);
27 });
28 </script>