# image-map-hotspots/2.0/settings/wpmart-plugins.php

Image Hotspot – Map Image Annotation, version 2.0. 28 lines.

- Page: https://pluginprobe.com/plugins/image-map-hotspots/2.0/code/settings/wpmart-plugins.php
- Raw: https://pluginprobe.com/plugins/image-map-hotspots/2.0/raw/settings/wpmart-plugins.php
- Modified: 2022-04-18T14:47:08+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/image-map-hotspots/2.0/code/settings/wpmart-plugins.php#L10-L20`.

```php
<?php
if (!defined('ABSPATH'))
   exit;

?>
<div class="imh-6310">
   <div class="imh-6310-row imh-6310-row-plugins">
      <h1 class="imh-6310-wpmart-all-plugins">WpMart Plugins</h1>
   </div>
</div>

<script>
   jQuery.getJSON('https://demo.tcsesoft.com/plugins/', function(data) {
      let htmlCode = '';
      for(let i = 0; i < data.length; i++) {
         htmlCode += `
         <div class="imh-6310-col-3">
            <div class="imh-6310-wpmart-plugins">
               <a href="${data[i].url}" target="_blank">
                  <img src="${data[i].image}" alt="${data[i].title}" class="ima-image-responsive">
                  <p>${data[i].title}</p>
               </a>
            </div>
         </div>`;
      }
      jQuery('.imh-6310-wpmart-all-plugins').after(htmlCode);
   });
</script>
```
