PluginProbe
Post Snippets – Custom WordPress Code Snippets Customizer / trunk
Post Snippets – Custom WordPress Code Snippets Customizer vtrunk
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 / src / PostSnippets / Features.php

Features.php in Post Snippets – Custom WordPress Code Snippets Customizer trunk, at src/PostSnippets/Features.php

43 lines 663 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace PostSnippets;
3
4 if ( ! defined( 'ABSPATH' ) ) exit;
5
6 /**
7 * Post Snippets Features.
8 *
9 *
10 * @author GreenTreeLabs <info at postsnippets dot com>
11 * @link https://www.postsnippets.com
12 */
13
14 class Features {
15
16 public function showFeatures() {
17 $html = '';
18 ob_start();
19 ?>
20 <div class="wrap">
21 <div id="pt-features">
22 <div id="pt-features-content">
23
24 <div class="ps_features_wrap">
25
26
27
28 </div>
29
30 </div>
31 <!-- .pt-features-content -->
32 </div>
33 <!-- .pt-features -->
34 </div><!-- .wrap -->
35 <?php
36
37 $html .= ob_get_contents();
38 ob_end_clean();
39
40 return $html;
41 }
42 }
43