Committing version 0.8

This commit is contained in:
kjodle 2017-05-27 15:44:26 -04:00
parent 9f54caa481
commit 6227144397
2 changed files with 13 additions and 29 deletions

40
functions/customizer.php Normal file → Executable file
View File

@ -481,7 +481,7 @@ $wp_customize->add_panel( 'atticusfinch', array(
$wp_customize->add_setting( 'atticus_finch_copyright', array(
'type' => 'theme_mod',
'transport' => 'postMessage',
'sanitize' => 'html',
'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>.';
@ -499,7 +499,7 @@ $default_copyright = '<a rel="license" href="http://creativecommons.org/licenses
'title' => __( 'Custom CSS', 'atticus-finch' ),
'capability' => 'edit_theme_options',
'priority' => 60,
'description' => __( 'Custom CSS is appended to the &lt;head&gt; of your document. If you need to enter more than a few lines, use a child theme.', 'atticus-finch' ),
'description' => sprintf( wp_kses( __( 'The best way to alter your theme is via a child theme. Use <a href="%s" target="_blank">this link</a> to download a ready-made child theme.', 'atticus-finch' ), array( 'a' => array( 'href' => array(), 'target' => array() ) ) ), esc_url( 'https://github.com/kjodle/atticus-finch-child' ) ),
'panel' => 'atticusfinch',
) );
@ -512,9 +512,7 @@ $default_copyright = '<a rel="license" href="http://creativecommons.org/licenses
$wp_customize->add_control( 'atticus_finch_ccss', array(
'section' => 'atticus_finch_custom_css',
'default' => '',
'type' => 'textarea',
'label' => __( 'Enter custom CSS here', 'atticus-finch' ),
'type' => 'select',
) );
@ -564,7 +562,7 @@ $default_copyright = '<a rel="license" href="http://creativecommons.org/licenses
$wp_customize->add_setting( 'atticus_finch_rss', array(
'type' => 'theme_mod',
'transport' => 'postMessage',
'sanintize_callback' => 'atticus_finch_sanitize_checkbox',
'sanitize_callback' => 'atticus_finch_sanitize_checkbox',
) );
$wp_customize->add_control( 'atticus_finch_rss', array(
@ -577,7 +575,7 @@ $default_copyright = '<a rel="license" href="http://creativecommons.org/licenses
$wp_customize->add_setting( 'atticus_finch_twitter', array(
'type' => 'theme_mod',
'transport' => 'postMessage',
'sanitize' => 'html',
'sanitize_callback' => 'html',
) );
$wp_customize->add_control( 'atticus_finch_twitter', array(
@ -590,7 +588,7 @@ $default_copyright = '<a rel="license" href="http://creativecommons.org/licenses
$wp_customize->add_setting( 'atticus_finch_twitter2', array(
'type' => 'theme_mod',
'transport' => 'postMessage',
'sanitize' => 'html',
'sanitize_callback' => 'html',
) );
$wp_customize->add_control( 'atticus_finch_twitter2', array(
@ -603,7 +601,7 @@ $default_copyright = '<a rel="license" href="http://creativecommons.org/licenses
$wp_customize->add_setting( 'atticus_finch_facebook', array(
'type' => 'theme_mod',
'transport' => 'postMessage',
'sanitize' => 'html',
'sanitize_callback' => 'html',
) );
$wp_customize->add_control( 'atticus_finch_facebook', array(
@ -616,7 +614,7 @@ $default_copyright = '<a rel="license" href="http://creativecommons.org/licenses
$wp_customize->add_setting( 'atticus_finch_instagram', array(
'type' => 'theme_mod',
'transport' => 'postMessage',
'sanitize' => 'html',
'sanitize_callback' => 'html',
) );
$wp_customize->add_control( 'atticus_finch_instagram', array(
@ -629,7 +627,7 @@ $default_copyright = '<a rel="license" href="http://creativecommons.org/licenses
$wp_customize->add_setting( 'atticus_finch_youtube', array(
'type' => 'theme_mod',
'transport' => 'postMessage',
'sanitize' => 'html',
'sanitize_callback' => 'html',
) );
$wp_customize->add_control( 'atticus_finch_youtube', array(
@ -642,7 +640,7 @@ $default_copyright = '<a rel="license" href="http://creativecommons.org/licenses
$wp_customize->add_setting( 'atticus_finch_pinterest', array(
'type' => 'theme_mod',
'transport' => 'postMessage',
'sanitize' => 'html',
'sanitize_callback' => 'html',
) );
$wp_customize->add_control( 'atticus_finch_pinterest', array(
@ -655,7 +653,7 @@ $default_copyright = '<a rel="license" href="http://creativecommons.org/licenses
$wp_customize->add_setting( 'atticus_finch_amazon', array(
'type' => 'theme_mod',
'transport' => 'postMessage',
'sanitize' => 'html',
'sanitize_callback' => 'html',
) );
$wp_customize->add_control( 'atticus_finch_amazon', array(
@ -921,20 +919,6 @@ $default_copyright = '<a rel="license" href="http://creativecommons.org/licenses
'label' => __( 'Excerpt length in number of words (maximum = 100)', 'atticus-finch' ),
) );
$wp_customize->add_setting( 'atticus_finch_main_menu_desc', array(
'type' => 'theme_mod',
'transport' => 'postMessage',
'default' => '1',
'sanitize_callback' => 'atticus_finch_sanitize_checkbox',
) );
$wp_customize->add_control( 'atticus_finch_main_menu_desc', array(
'section' => 'atticus_finch_misc',
'type' => 'checkbox',
'label' => __( 'Show menu item descriptions in main menu', 'atticus-finch' ),
) );
// Preview some of our options
/*
if ( $wp_customize->is_preview() && ! is_admin() )
@ -1011,4 +995,4 @@ function atticus_finch_sanitize_css( $input ) {
// wp_filter_nohtml_kses( $input );
strip_tags( $input );
return $input;
}
}

View File

@ -4,7 +4,7 @@ Theme URI: http://wiki.kjodle.net/Category:Atticus_Finch_Theme
Author: kjodle
Author URI: http://d12webdesign.com/
Description: Description
Version: 0.7.1
Version: 0.8
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: two-columns, left-sidebar, custom-menu, featured-images, post-formats, theme-options, threaded-comments, translation-ready