| 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> |