2013-10-08 09:06:32 -07:00
|
|
|
<?php
|
|
|
|
|
/**
|
2014-01-16 13:40:07 -08:00
|
|
|
* Trestle admin functionality
|
|
|
|
|
*
|
|
|
|
|
* @since 1.0.0
|
|
|
|
|
*
|
|
|
|
|
* @package Trestle
|
2013-10-08 09:06:32 -07:00
|
|
|
*/
|
2013-11-14 12:42:45 -08:00
|
|
|
|
2014-01-16 13:40:07 -08:00
|
|
|
// Require admin functions
|
|
|
|
|
require_once dirname( __FILE__ ) . '/admin-functions.php';
|
2013-11-14 12:42:45 -08:00
|
|
|
|
2014-01-16 13:40:07 -08:00
|
|
|
// Trestle admin scripts and styles
|
|
|
|
|
add_action( 'admin_enqueue_scripts', 'trestle_admin_actions' );
|
2013-11-14 14:26:55 -08:00
|
|
|
|
2014-01-16 13:40:07 -08:00
|
|
|
// Trestle default settings
|
|
|
|
|
add_filter( 'genesis_theme_settings_defaults', 'trestle_custom_defaults' );
|
2013-11-14 12:42:45 -08:00
|
|
|
|
2014-01-16 13:40:07 -08:00
|
|
|
// Sanitize settings
|
|
|
|
|
add_action( 'genesis_settings_sanitizer_init', 'trestle_register_social_sanitization_filters' );
|
2013-10-08 09:06:32 -07:00
|
|
|
|
2014-01-16 13:40:07 -08:00
|
|
|
// Register Trestle settings metabox
|
|
|
|
|
add_action( 'genesis_theme_settings_metaboxes', 'trestle_register_settings_box' );
|
2013-11-19 09:52:34 -08:00
|
|
|
|
2014-01-16 13:40:07 -08:00
|
|
|
// Required & recommended plugins
|
|
|
|
|
add_action( 'tgmpa_register', 'trestle_register_required_plugins' );
|