content.php
2 weeks ago
index.php
2 weeks ago
modal.php
2 weeks ago
oembed_features.php
2 weeks ago
plugin_info.php
2 weeks ago
index.php
22 lines
| 1 | <?php |
| 2 | // Exit if accessed directly |
| 3 | if (!defined('ABSPATH')) { |
| 4 | exit; |
| 5 | } |
| 6 | /** |
| 7 | * CFF Header Notices |
| 8 | * |
| 9 | * @since 4.0 |
| 10 | */ |
| 11 | do_action('cff_header_notices'); |
| 12 | ?> |
| 13 | <div id="cff-oembeds" class="cff-oembeds"> |
| 14 | <?php |
| 15 | CustomFacebookFeed\CFF_View::render('sections.header'); |
| 16 | ?> |
| 17 | <main> |
| 18 | <?php |
| 19 | CustomFacebookFeed\CFF_View::render('oembeds.content'); |
| 20 | ?> |
| 21 | </main> |
| 22 | </div> |