976 lines
30 KiB
PHP
Executable File
976 lines
30 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Portage Theme Customizer
|
|
*
|
|
* @package Portage
|
|
*/
|
|
|
|
|
|
/**
|
|
* Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
|
|
*/
|
|
function portage_customize_preview_js() {
|
|
wp_enqueue_script( 'portage_customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20130508', true );
|
|
}
|
|
add_action( 'customize_preview_init', 'portage_customize_preview_js' );
|
|
|
|
|
|
// Add some Customizer stuff
|
|
// developer.wordpress.org/themes/advanced-topics/customizer-api/
|
|
add_action( 'customize_register', 'portage_customize_register', 11 );
|
|
function portage_customize_register( $wp_customize ) {
|
|
|
|
// Add postMessage support for site title and description for the Theme Customizer
|
|
$wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
|
|
$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
|
|
$wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage';
|
|
|
|
|
|
$wp_customize->add_panel( 'atticusfinch', array(
|
|
'title' => __( 'Portage Theme Options', 'atticus-finch' ),
|
|
'description' => __( 'The Portage theme has many options. Vist the theme\'s <a href="http://www.example.com/">home page</a> for complete instructions.', 'atticus-finch' ),
|
|
'priority' => 05,
|
|
) );
|
|
|
|
|
|
// Widget Areas
|
|
$wp_customize->add_section( 'portage_widget_areas', array(
|
|
'title' => __( 'Widget Areas', 'atticus-finch' ),
|
|
'capability' => 'edit_theme_options',
|
|
'priority' => 30,
|
|
'description' => __( 'Select which action hook widget areas you would like to activate.', 'atticus-finch' ),
|
|
'panel' => 'atticusfinch',
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_before_header', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_before_header', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Before Header', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_after_top_menu', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_after_top_menu', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'After Top Menu', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_before_social_media', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_before_social_media', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Before Social Media', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_before_primary_menu', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_before_primary_menu', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Before Primary Menu', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_after_header', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_after_header', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'After Header', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_container_top', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_container_top', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Top of Container', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_before_post_title', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_before_post_title', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Before Post Title', 'atticus-finch' ),
|
|
) );
|
|
|
|
/*
|
|
* We've removed this action hook, but let's leave this control in place
|
|
* in case we find a use for it later.
|
|
$wp_customize->add_setting( 'portage_before_post_content', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_before_post_content', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Before Post Content', 'atticus-finch' ),
|
|
) );
|
|
*/
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_post_top', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_post_top', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Top of Post', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_post_bottom', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_post_bottom', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Bottom of Post', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_after_post_content', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_after_post_content', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'After Post Content', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_before_post_meta', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_before_post_meta', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Before Post Meta', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_after_post_meta', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_after_post_meta', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'After Post Meta', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_before_comments', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_before_comments', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Before Comments', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_after_comments', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_after_comments', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'After Comments', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_before_comment_form', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_before_comment_form', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Before Comment Form', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_after_comment_form', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_after_comment_form', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'After Comment Form', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_container_bottom', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_container_bottom', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Bottom of Container', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_before_footer_menu', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_before_footer_menu', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Before Footer Menu', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_footer_top', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_footer_top', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Top of Footer', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_footer_bottom', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_footer_bottom', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Bottom of Footer', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_after_footer', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_after_footer', array(
|
|
'section' => 'portage_widget_areas',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'After Footer', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
// Post Format Title Options
|
|
$wp_customize->add_section( 'portage_post_format_title_options', array(
|
|
'title' => __( 'Post Format Title Options', 'atticus-finch' ),
|
|
'capability' => 'edit_theme_options',
|
|
'priority' => 10,
|
|
'description' => __('Select whether titles should appear for various post formats.', 'atticus-finch'),
|
|
'panel' => 'atticusfinch',
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'portage_aside_title', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_aside_title', array(
|
|
'section' => 'portage_post_format_title_options',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Display title for asides', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_link_title', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_link_title', array(
|
|
'section' => 'portage_post_format_title_options',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Display title for links', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_quote_title', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_quote_title', array(
|
|
'section' => 'portage_post_format_title_options',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Display title for quotes', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_status_title', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_status_title', array(
|
|
'section' => 'portage_post_format_title_options',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Display title for statuses', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
// Post Format Excerpt Options
|
|
$wp_customize->add_section( 'portage_post_format_excerpt_options', array(
|
|
'title' => __( 'Post Format Excerpt Options', 'atticus-finch' ),
|
|
'capability' => 'edit_theme_options',
|
|
'priority' => 20,
|
|
'description' => __('By default, the aside, link, quote, and statu post format will display full content on the home page. You can choose to show excerpts instead.', 'atticus-finch'),
|
|
'panel' => 'atticusfinch',
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'portage_aside_excerpt', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_aside_excerpt', array(
|
|
'section' => 'portage_post_format_excerpt_options',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Display excerpt for asides', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_link_excerpt', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_link_excerpt', array(
|
|
'section' => 'portage_post_format_excerpt_options',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Display excerpt for links', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_quote_excerpt', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_quote_excerpt', array(
|
|
'section' => 'portage_post_format_excerpt_options',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Display excerpt for quotes', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_status_excerpt', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_status_excerpt', array(
|
|
'section' => 'portage_post_format_excerpt_options',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Display excerpt for statuses', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$default_readmore = __( '…read more…', 'atticus-finch' );
|
|
$wp_customize->add_setting( 'portage_readmore', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'default' => $default_readmore,
|
|
'sanitize_callback' => 'portage_sanitize_text',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_readmore', array(
|
|
'section' => 'portage_post_format_excerpt_options',
|
|
'type' => 'text',
|
|
'label' => __( 'Text for ‘read more’ link (in all excerpts)', 'atticus-finch'),
|
|
) );
|
|
|
|
|
|
// Copyright Information
|
|
$wp_customize->add_section( 'portage_copyright', array(
|
|
'title' => __( 'Copyright Information', 'atticus-finch' ),
|
|
'capability' => 'edit_theme_options',
|
|
'priority' => 50,
|
|
'description' => __( 'Copyright information will appear in the footer, and at the bottom of printed pages. (Make sure you have not disabled this function under "Miscellaneous Options")', 'atticus-finch' ),
|
|
'panel' => 'atticusfinch',
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'portage_copyright', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'html',
|
|
) );
|
|
|
|
$default_copyright = '<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" id="cc-button" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a>This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.';
|
|
|
|
$wp_customize->add_control( 'portage_copyright', array(
|
|
'section' => 'portage_copyright',
|
|
'default' => $default_copyright,
|
|
'type' => 'textarea',
|
|
'label' => __( 'Enter your copyright information. (HTML is allowed.)', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
// Print Options
|
|
$wp_customize->add_section( 'portage_print', array (
|
|
'title' => __( 'Print Options', 'atticus-finch' ),
|
|
'capability' => 'edit_theme_options',
|
|
'priority' => 40,
|
|
'panel' => 'atticusfinch',
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_print_url', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_print_url', array(
|
|
'section' => 'portage_print',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Print URL information at end of post', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_print_copyright', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_print_copyright', array(
|
|
'section' => 'portage_print',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Print copyright information at end of post', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
// Social Media Options
|
|
$wp_customize->add_section( 'portage_social_media', array(
|
|
'title' => __( 'Social Media Options', 'atticus-finch' ),
|
|
'capability' => 'edit_theme_options',
|
|
'priority' => 90,
|
|
'panel' => 'atticusfinch',
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'portage_rss', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_rss', array(
|
|
'section' => 'portage_social_media',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Display link to RSS feed', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_twitter', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_url',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_twitter', array(
|
|
'section' => 'portage_social_media',
|
|
'type' => 'url',
|
|
'label' => __( 'Enter Twitter URL', 'atticus-finch'),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_twitter2', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_url',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_twitter2', array(
|
|
'section' => 'portage_social_media',
|
|
'type' => 'url',
|
|
'label' => __( 'Enter second Twitter URL', 'atticus-finch'),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_facebook', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_url',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_facebook', array(
|
|
'section' => 'portage_social_media',
|
|
'type' => 'url',
|
|
'label' => __( 'Enter Facebook URL', 'atticus-finch'),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_instagram', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_url',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_instagram', array(
|
|
'section' => 'portage_social_media',
|
|
'type' => 'text',
|
|
'label' => __( 'Enter Instagram URL', 'atticus-finch'),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_youtube', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_url',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_youtube', array(
|
|
'section' => 'portage_social_media',
|
|
'type' => 'url',
|
|
'label' => __( 'Enter YouTube URL', 'atticus-finch'),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_pinterest', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_url',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_pinterest', array(
|
|
'section' => 'portage_social_media',
|
|
'type' => 'url',
|
|
'label' => __( 'Enter Pinterest Profile URL', 'atticus-finch'),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_amazon', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_url',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_amazon', array(
|
|
'section' => 'portage_social_media',
|
|
'type' => 'url',
|
|
'label' => __( 'Enter Amazon Wish List URL', 'atticus-finch'),
|
|
) );
|
|
|
|
|
|
|
|
|
|
// Mobile Menu Options
|
|
$wp_customize->add_section( 'portage_mobile_menu_options', array(
|
|
'title' => __( 'Mobile Menu Options', 'atticus-finch' ),
|
|
'capability' => 'edit_theme_options',
|
|
'priority' => 110,
|
|
'description' => __('Menu settings for mobile appearance. <b>Note:</b> The breakpoint settings will override the "mobile breakpoint" setting.', 'atticus-finch'),
|
|
'panel' => 'atticusfinch',
|
|
) );
|
|
|
|
// Top Menu Options
|
|
$wp_customize->add_setting( 'portage_top_menu_name', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_text',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_top_menu_name', array(
|
|
'section' => 'portage_mobile_menu_options',
|
|
'type' => 'text',
|
|
'label' => __( 'Mobile display name for top menu', 'atticus-finch' ),
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'portage_top_menu_type', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_mobile_menu_type',
|
|
'default' => 'select',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_top_menu_type', array(
|
|
'section' => 'portage_mobile_menu_options',
|
|
'type' => 'select',
|
|
'choices' => array(
|
|
'select' => 'Select Menu',
|
|
'dropdown' => 'Flat Menu',
|
|
'multitoggle' => 'Dropdown Menu',
|
|
),
|
|
'label' => __( 'Display the top menu as', 'atticus-finch' ),
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'portage_top_menu_breakpoint', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_int',
|
|
'default' => 640,
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_top_menu_breakpoint', array(
|
|
'section' => 'portage_mobile_menu_options',
|
|
'type' => 'integer',
|
|
'label' => __( 'Breakpoint to display top menu as mobile', 'atticus-finch' ),
|
|
) );
|
|
|
|
// Main Menu Options
|
|
$wp_customize->add_setting( 'portage_main_menu_name', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_text',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_main_menu_name', array(
|
|
'section' => 'portage_mobile_menu_options',
|
|
'type' => 'text',
|
|
'label' => __( 'Mobile display name for main menu', 'atticus-finch' ),
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'portage_main_menu_type', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_mobile_menu_type',
|
|
'default' => 'select',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_main_menu_type', array(
|
|
'section' => 'portage_mobile_menu_options',
|
|
'type' => 'select',
|
|
'choices' => array(
|
|
'select' => 'Select Menu',
|
|
'dropdown' => 'Flat Menu',
|
|
'multitoggle' => 'Dropdown Menu',
|
|
),
|
|
'label' => __( 'Display the menu menu as', 'atticus-finch' ),
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'portage_main_menu_breakpoint', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_int',
|
|
'default' => 640,
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_main_menu_breakpoint', array(
|
|
'section' => 'portage_mobile_menu_options',
|
|
'type' => 'integer',
|
|
'label' => __( 'Breakpoint to display main menu as mobile', 'atticus-finch' ),
|
|
) );
|
|
|
|
// Footer Menu Options
|
|
$wp_customize->add_setting( 'portage_footer_menu_name', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_text',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_footer_menu_name', array(
|
|
'section' => 'portage_mobile_menu_options',
|
|
'type' => 'text',
|
|
'label' => __( 'Mobile display name for footer menu', 'atticus-finch' ),
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'portage_footer_menu_type', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_mobile_menu_type',
|
|
'default' => 'select',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_footer_menu_type', array(
|
|
'section' => 'portage_mobile_menu_options',
|
|
'type' => 'select',
|
|
'choices' => array(
|
|
'select' => 'Select Menu',
|
|
'dropdown' => 'Flat Menu',
|
|
'multitoggle' => 'Dropdown Menu',
|
|
),
|
|
'label' => __( 'Display the footer menu as', 'atticus-finch' ),
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'portage_footer_menu_breakpoint', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'portage_sanitize_int',
|
|
'default' => 640,
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_footer_menu_breakpoint', array(
|
|
'section' => 'portage_mobile_menu_options',
|
|
'type' => 'integer',
|
|
'label' => __( 'Breakpoint to display footer menu as mobile', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
// Mobile Options Options
|
|
$wp_customize->add_section( 'portage_mobile', array(
|
|
'title' => __( 'Mobile Options', 'atticus-finch' ),
|
|
'capability' => 'edit_theme_options',
|
|
'priority' => 100,
|
|
'panel' => 'atticusfinch',
|
|
'description' => 'Fine-tune your mobile appearance',
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'portage_mobile_breakpoint', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'default' => '640',
|
|
'sanitize_callback' => 'portage_sanitize_int',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_mobile_breakpoint', array(
|
|
'section' => 'portage_mobile',
|
|
'type' => 'text',
|
|
'label' => __( 'Breakpoint to display mobile version of theme', 'atticus-finch' ),
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'portage_post_top_link', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'default' => '0',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_post_top_link', array(
|
|
'section' => 'portage_mobile',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Display \'Return to Top\' link after post content', 'atticus-finch' ),
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'portage_footer_top_link', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'default' => '0',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_footer_top_link', array(
|
|
'section' => 'portage_mobile',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Display \'Return to Top\' link before footer content', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
// Miscellaneous Options
|
|
$wp_customize->add_section( 'portage_misc', array(
|
|
'title' => __( 'Miscellaneous Options', 'atticus-finch' ),
|
|
'capability' => 'edit_theme_options',
|
|
'priority' => 200,
|
|
'panel' => 'atticusfinch',
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'portage_display_copyright', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'default' => '1',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_display_copyright', array(
|
|
'section' => 'portage_misc',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Display copyright information in footer', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_display_credits', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'default' => '1',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_display_credits', array(
|
|
'section' => 'portage_misc',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Display developer credits in footer', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_edit_post_link', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'default' => '1',
|
|
'sanitize_callback' => 'portage_sanitize_checkbox',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_edit_post_link', array(
|
|
'section' => 'portage_misc',
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Display "Edit this post" link if user is logged in', 'atticus-finch' ),
|
|
) );
|
|
|
|
|
|
$wp_customize->add_setting( 'portage_excerpt_length', array(
|
|
'type' => 'theme_mod',
|
|
'transport' => 'postMessage',
|
|
'default' => '20',
|
|
'sanitize_callback' => 'portage_sanitize_excerpt',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'portage_excerpt_length', array(
|
|
'section' => 'portage_misc',
|
|
'type' => 'text',
|
|
'label' => __( 'Excerpt length in number of words (maximum = 100)', 'atticus-finch' ),
|
|
) );
|
|
|
|
// Preview some of our options
|
|
/*
|
|
if ( $wp_customize->is_preview() && ! is_admin() )
|
|
add_action( 'wp_footer', 'portage_customize_preview', 21);
|
|
|
|
function themename_customize_preview() {
|
|
?>
|
|
<script type="text/javascript">
|
|
( function( $ ){
|
|
wp.customize('setting_name',function( value ) {
|
|
value.bind(function(to) {
|
|
$('.posttitle').css('color', to ? to : '' );
|
|
});
|
|
});
|
|
} )( jQuery )
|
|
</script>
|
|
<?php
|
|
}
|
|
*/
|
|
|
|
} // End register function
|
|
|
|
|
|
// Sanitizer Functions
|
|
|
|
function portage_sanitize_checkbox( $input ) {
|
|
if ( $input == 1 ) {
|
|
return 1;
|
|
} else {
|
|
return '';
|
|
}
|
|
}
|
|
|
|
function portage_sanitize_text( $input ) {
|
|
return wp_kses_post( force_balance_tags( $input ) );
|
|
}
|
|
|
|
function portage_sanitize_excerpt( $input ) {
|
|
$input = absint( $input );
|
|
if ( $input > 100 ) { $input = 100; }
|
|
return $input;
|
|
}
|
|
|
|
function portage_sanitize_html( $input ) {
|
|
wp_kses($input,
|
|
array(),
|
|
array(
|
|
'http' => array(),
|
|
'https' => array(),
|
|
)
|
|
);
|
|
}
|
|
|
|
function portage_sanitize_url( $url ) {
|
|
return esc_url_raw( $url );
|
|
}
|
|
|
|
function portage_sanitize_mobile_menu_type( $input ){
|
|
$valid = array(
|
|
'select' => 'Select Menu',
|
|
'dropdown' => 'Flat Menu',
|
|
'multitoggle' => 'Dropdown Menu',
|
|
);
|
|
if ( array_key_exists( $input, $valid ) ) {
|
|
return $input;
|
|
} else {
|
|
return '';
|
|
}
|
|
}
|
|
|
|
function portage_sanitize_int( $input ){
|
|
if( is_numeric( $input) ) {
|
|
return intval( $input );
|
|
}
|
|
}
|
|
|