PluginProbe
Post Snippets – Custom WordPress Code Snippets Customizer / 4.2.2
Post Snippets – Custom WordPress Code Snippets Customizer v4.2.2
4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.1 1.7.2 1.7.3 1.8 1.8.1 1.8.2 1.8.3 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.8.9.1 1.8.9.2 1.9 1.9.1 1.9.2 1.9.3 1.9.4 1.9.5 All 115 releases
post-snippets / views / admin_news.php

admin_news.php in Post Snippets – Custom WordPress Code Snippets Customizer 4.2.2, at views/admin_news.php

49 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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