-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter_selector.php
executable file
·37 lines (32 loc) · 2.91 KB
/
footer_selector.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
/*
* @package ANDYP - Footer Selector
* @author Andy Pearson <andy@londonparkour.com>
* @copyright 2020 LondonParkour
*
* @wordpress-plugin
* Plugin Name: _ANDYP - WP - Footer Selector
* Plugin URI: http://londonparkour.com
* Description: <strong>🎛PANEL</strong> | <em>ANDYP > Footer Selector.</em> | Allows you to select a particular page contents as your footer content.
* Version: 1.0.0
* Author: Andy Pearson
* Author URI: https://londonparkour.com
* Text Domain: andyp-footer-selector
* Domain Path: /languages
*/
// ┌─────────────────────────────────────────────────────────────────────────┐
// │ Register with ANDYP Plugins │
// └─────────────────────────────────────────────────────────────────────────┘
require __DIR__.'/src/acf/andyp_plugin_register.php';
// ┌─────────────────────────────────────────────────────────────────────────┐
// │ ACF Admin Page for Options & Settings │
// └─────────────────────────────────────────────────────────────────────────┘
require __DIR__.'/src/acf/acf_admin_page.php';
// ┌─────────────────────────────────────────────────────────────────────────┐
// │ The ACF │
// └─────────────────────────────────────────────────────────────────────────┘
require __DIR__.'/src/acf/acf_panel.php';
// ┌─────────────────────────────────────────────────────────────────────────┐
// │ The ACF │
// └─────────────────────────────────────────────────────────────────────────┘
require __DIR__.'/src/filter/get_footer_code.php';