| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) exit; |
| 3 |
?> |
| 4 |
|
| 5 |
<h2 style="margin-top:40px;">More plugins by WPexperts:</h2> |
| 6 |
|
| 7 |
<style> |
| 8 |
.sab-plugin { |
| 9 |
width: 300px; |
| 10 |
display: inline-block; |
| 11 |
background: #fff; |
| 12 |
border: 1px solid #ccc; |
| 13 |
padding: 4px 4px 20px 4px; |
| 14 |
margin:0 10px 10px 0; |
| 15 |
} |
| 16 |
.sab-plugin img { |
| 17 |
width: 100%; |
| 18 |
height: 200px; |
| 19 |
} |
| 20 |
.sab-plugin p { |
| 21 |
padding: 15px; |
| 22 |
height: 106px; |
| 23 |
} |
| 24 |
.sab-center { |
| 25 |
text-align: center; |
| 26 |
} |
| 27 |
.sab-plugin .sab-button { |
| 28 |
display:inline-block; |
| 29 |
} |
| 30 |
a.button { |
| 31 |
color:green; |
| 32 |
} |
| 33 |
</style> |
| 34 |
|
| 35 |
<div class="sab-plugins"> |
| 36 |
<?php foreach($plugins as $plugin) : ?> |
| 37 |
<div class="sab-plugin"> |
| 38 |
<a target="_blank" href="<?php echo $plugin["url"] ?>"> |
| 39 |
<img src="<?php echo PS_URL . "assets/img/" , $plugin["image"] ?>" alt="Go to <?php echo $plugin["name"] ?>" /> |
| 40 |
</a> |
| 41 |
<p><?php echo $plugin["description"] ?></p> |
| 42 |
<div class="sab-center"> |
| 43 |
<a target="_blank" class="button button-primary button-hero" href="<?php echo $plugin["url"] ?>"><?php _e('Read more') ?></a> |
| 44 |
</div> |
| 45 |
</div> |
| 46 |
<?php endforeach ?> |
| 47 |
</div> |
| 48 |
</div> |
| 49 |
|