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