initial upload

This commit is contained in:
2026-04-20 22:55:59 +02:00
commit 56a8b97875
115 changed files with 43622 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<?php
/**
* Register customizer blocks used by the Zeitfresser theme.
*/
if ( ! defined( 'ZEITFRESSER_BLOCKS_DIR_PATH' ) ) {
define( 'ZEITFRESSER_BLOCKS_DIR_PATH', dirname( __FILE__ ) );
}
if ( ! defined( 'DAISY_BLOG_BLOCKS_DIR_PATH' ) ) {
define( 'DAISY_BLOG_BLOCKS_DIR_PATH', ZEITFRESSER_BLOCKS_DIR_PATH );
}
require dirname( __FILE__ ) . '/includes/sanitize.php';
require dirname( __FILE__ ) . '/includes/register-controls.php';
require dirname( __FILE__ ) . '/site-identity/site-identity.php';
require dirname( __FILE__ ) . '/colors/colors.php';
require dirname( __FILE__ ) . '/font-family/font-family.php';
require dirname( __FILE__ ) . '/font-customization/font-customization.php';
require dirname( __FILE__ ) . '/general/general.php';
require dirname( __FILE__ ) . '/post-detail/post-detail.php';
require dirname( __FILE__ ) . '/footer-copyright/footer-copyright.php';
@@ -0,0 +1,11 @@
<?php
add_action( 'wp_enqueue_scripts', 'zeitfresser_sticky_menu_background_color' );
function zeitfresser_sticky_menu_background_color() {
$bg_color = get_theme_mod( 'background_color', get_theme_support( 'custom-background', 'default-color' ) );
$dynamic_css = "body,.site-header{background:#$bg_color;}";
wp_add_inline_style( 'zeitfresser', $dynamic_css );
}
@@ -0,0 +1,25 @@
<?php
add_action( 'customize_register', 'zeitfresser_dark_color' );
function zeitfresser_dark_color( $wp_customize ) {
$wp_customize->add_setting( 'dark_color', array(
'default' => zeitfresser_get_default_dark_color(),
'transport' => 'postMessage',
'sanitize_callback' => 'sanitize_hex_color'
) );
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'dark_color', array(
'label' => esc_html__( 'Misc Colors', 'zeitfresser' ),
'section' => 'colors',
'settings' => 'dark_color',
) ) );
}
add_action( 'customize_preview_init', 'zeitfresser_dark_color_enqueue_scripts' );
function zeitfresser_dark_color_enqueue_scripts() {
wp_enqueue_script( 'graphthemes-dark-customizer', get_template_directory_uri() . '/inc/blocks/colors/color-dark/customizer-color-dark.js', array('jquery'), '', true );
}
@@ -0,0 +1,10 @@
jQuery( function( $ ) {
wp.customize('dark_color',function ( value ) {
value.bind(function ( to ) {
document.body.style.setProperty('--dark-color', to);
}
);
} );
} );
@@ -0,0 +1,25 @@
<?php
add_action( 'customize_register', 'zeitfresser_grey_color' );
function zeitfresser_grey_color( $wp_customize ) {
$wp_customize->add_setting( 'grey_color', array(
'default' => zeitfresser_get_default_grey_color(),
'transport' => 'postMessage',
'sanitize_callback' => 'sanitize_hex_color'
) );
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'grey_color', array(
'label' => esc_html__( 'Soft Text Color', 'zeitfresser' ),
'section' => 'colors',
'settings' => 'grey_color',
) ) );
}
add_action( 'customize_preview_init', 'zeitfresser_grey_color_enqueue_scripts' );
function zeitfresser_grey_color_enqueue_scripts() {
wp_enqueue_script( 'graphthemes-grey-customizer', get_template_directory_uri() . '/inc/blocks/colors/color-grey/customizer-color-grey.js', array('jquery'), '', true );
}
@@ -0,0 +1,10 @@
jQuery( function( $ ) {
wp.customize('grey_color',function ( value ) {
value.bind(function ( to ) {
document.body.style.setProperty('--grey-color', to);
}
);
} );
} );
@@ -0,0 +1,25 @@
<?php
add_action( 'customize_register', 'zeitfresser_light_color' );
function zeitfresser_light_color( $wp_customize ) {
$wp_customize->add_setting( 'light_color', array(
'default' => zeitfresser_get_default_light_color(),
'transport' => 'postMessage',
'sanitize_callback' => 'sanitize_hex_color'
) );
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'light_color', array(
'label' => esc_html__( 'Header Color', 'zeitfresser' ),
'section' => 'colors',
'settings' => 'light_color',
) ) );
}
add_action( 'customize_preview_init', 'zeitfresser_light_color_enqueue_scripts' );
function zeitfresser_light_color_enqueue_scripts() {
wp_enqueue_script( 'graphthemes-light-customizer', get_template_directory_uri() . '/inc/blocks/colors/color-light/customizer-color-light.js', array('jquery'), '', true );
}
@@ -0,0 +1,10 @@
jQuery( function( $ ) {
wp.customize('light_color',function ( value ) {
value.bind(function ( to ) {
document.body.style.setProperty('--light-color', to);
}
);
} );
} );
@@ -0,0 +1,25 @@
<?php
add_action( 'customize_register', 'zeitfresser_primary_color' );
function zeitfresser_primary_color( $wp_customize ) {
$wp_customize->add_setting( 'primary_color', array(
'default' => zeitfresser_get_default_primary_color(),
'transport' => 'postMessage',
'sanitize_callback' => 'sanitize_hex_color'
) );
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'primary_color', array(
'label' => esc_html__( 'Menu / Title / Button Color', 'zeitfresser' ),
'section' => 'colors',
'settings' => 'primary_color',
) ) );
}
add_action( 'customize_preview_init', 'zeitfresser_primary_color_enqueue_scripts' );
function zeitfresser_primary_color_enqueue_scripts() {
wp_enqueue_script( 'graphthemes-primary-color-customizer', get_template_directory_uri() . '/inc/blocks/colors/color-primary/customizer-color-primary.js', array('jquery'), '', true );
}
@@ -0,0 +1,10 @@
jQuery( function( $ ) {
wp.customize('primary_color',function ( value ) {
value.bind(function ( to ) {
document.body.style.setProperty('--primary-color', to);
}
);
} );
} );
@@ -0,0 +1,25 @@
<?php
add_action( 'customize_register', 'zeitfresser_secondary_color' );
function zeitfresser_secondary_color( $wp_customize ) {
$wp_customize->add_setting( 'secondary_color', array(
'default' => zeitfresser_get_default_secondary_color(),
'transport' => 'postMessage',
'sanitize_callback' => 'sanitize_hex_color'
) );
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'secondary_color', array(
'label' => esc_html__( 'Highlight Color', 'zeitfresser' ),
'section' => 'colors',
'settings' => 'secondary_color',
) ) );
}
add_action( 'customize_preview_init', 'zeitfresser_secondary_color_enqueue_scripts' );
function zeitfresser_secondary_color_enqueue_scripts() {
wp_enqueue_script( 'graphthemes-secondary-customizer', get_template_directory_uri() . '/inc/blocks/colors/color-secondary/customizer-color-secondary.js', array('jquery'), '', true );
}
@@ -0,0 +1,10 @@
jQuery( function( $ ) {
wp.customize('secondary_color',function ( value ) {
value.bind(function ( to ) {
document.body.style.setProperty('--secondary-color', to);
}
);
} );
} );
@@ -0,0 +1,25 @@
<?php
add_action( 'customize_register', 'zeitfresser_site_title_color' );
function zeitfresser_site_title_color( $wp_customize ) {
$wp_customize->add_setting( 'site_title_color_option', array(
'default' => zeitfresser_get_default_site_title_color(),
'transport' => 'postMessage',
'sanitize_callback' => 'sanitize_hex_color',
) );
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'site_title_color_option', array(
'label' => esc_html__( 'Site Identity Color', 'zeitfresser' ),
'section' => 'title_tagline',
'settings' => 'site_title_color_option',
) ) );
}
add_action( 'customize_preview_init', 'zeitfresser_site_title_color_enqueue_scripts' );
function zeitfresser_site_title_color_enqueue_scripts() {
wp_enqueue_script( 'graphthemes-site-title-color-customizer', get_template_directory_uri() . '/inc/blocks/colors/color-site-title/customizer-color-site-title.js', array(), '', true );
}
@@ -0,0 +1,9 @@
jQuery( function( $ ) {
wp.customize( 'site_title_color_option', function( value ) {
value.bind( function( to ) {
$( '.site-title a' ).css( 'color', to );
} );
} );
} );
+35
View File
@@ -0,0 +1,35 @@
<?php
add_action( 'after_setup_theme', function () {
add_theme_support( 'custom-header', array( 'header-text' => false ) );
} );
add_action('customize_register', 'zeitfresser_color_section');
function zeitfresser_color_section($wp_customize)
{
$wp_customize->get_section('colors')->title = esc_html__( "Color Options", 'zeitfresser' );
$wp_customize->get_section('colors')->priority = 21;
}
/* Add Default Colors for Customizer Settings */
require dirname( __FILE__ ) . '/default-colors.php';
if( db_fs()->is__premium_only() ) {
require dirname( __FILE__ ) . '/color-site-title/color-site-title.php';
require dirname( __FILE__ ) . '/color-primary/color-primary.php';
require dirname( __FILE__ ) . '/color-secondary/color-secondary.php';
require dirname( __FILE__ ) . '/color-light/color-light.php';
require dirname( __FILE__ ) . '/color-grey/color-grey.php';
require dirname( __FILE__ ) . '/color-dark/color-dark.php';
}
require dirname( __FILE__ ) . '/color-background/color-background.php';
require dirname( __FILE__ ) . '/dynamic-colors.php';
+37
View File
@@ -0,0 +1,37 @@
<?php
/* Default Site Title Color */
function zeitfresser_get_default_site_title_color() {
return "#f7f7fa";
}
/* Default Primary Color */
function zeitfresser_get_default_primary_color() {
return "#f7f7fa";
}
/* Default Secondary Color */
function zeitfresser_get_default_secondary_color() {
return "#f7f7fa";
}
/* Default Light Color */
function zeitfresser_get_default_light_color() {
return "#1e1f29";
}
/* Default Grey Color */
function zeitfresser_get_default_grey_color() {
return "#f7f7fa";
}
/* Default Dark Color */
function zeitfresser_get_default_dark_color() {
return "#f7f7fa";
}
/* Default Background Color */
function zeitfresser_get_default_background_color() {
return "1e1f29";
}
+62
View File
@@ -0,0 +1,62 @@
<?php
add_action( 'wp_enqueue_scripts', 'zeitfresser_site_title_color_dynamic_css' );
function zeitfresser_site_title_color_dynamic_css() {
$site_title_color = esc_attr( get_theme_mod( 'site_title_color_option', zeitfresser_get_default_site_title_color() ) );
$dynamic_css = ":root { --site-title-color: $site_title_color; }";
wp_add_inline_style( 'zeitfresser', $dynamic_css );
}
add_action( 'wp_enqueue_scripts', 'zeitfresser_secondary_color_dynamic_css' );
function zeitfresser_secondary_color_dynamic_css() {
$secondary_color = esc_attr( get_theme_mod( 'secondary_color', zeitfresser_get_default_secondary_color() ) );
$dynamic_css = ":root { --secondary-color: $secondary_color; }";
wp_add_inline_style( 'zeitfresser', $dynamic_css );
}
add_action( 'wp_enqueue_scripts', 'zeitfresser_primary_color_dynamic_css' );
function zeitfresser_primary_color_dynamic_css() {
$primary_color = esc_attr( get_theme_mod( 'primary_color', zeitfresser_get_default_primary_color() ) );
$dynamic_css = ":root { --primary-color: $primary_color; }";
wp_add_inline_style( 'zeitfresser', $dynamic_css );
}
add_action( 'wp_enqueue_scripts', 'zeitfresser_light_color_dynamic_css' );
function zeitfresser_light_color_dynamic_css() {
$light_color = esc_attr( get_theme_mod( 'light_color', zeitfresser_get_default_light_color() ) );
$dynamic_css = ":root { --light-color: $light_color; }";
wp_add_inline_style( 'zeitfresser', $dynamic_css );
}
add_action( 'wp_enqueue_scripts', 'zeitfresser_grey_color_dynamic_css' );
function zeitfresser_grey_color_dynamic_css() {
$grey_color = esc_attr( get_theme_mod( 'grey_color', zeitfresser_get_default_grey_color() ) );
$dynamic_css = ":root { --grey-color: $grey_color; }";
wp_add_inline_style( 'zeitfresser', $dynamic_css );
}
add_action( 'wp_enqueue_scripts', 'zeitfresser_dark_color_dynamic_css' );
function zeitfresser_dark_color_dynamic_css() {
$dark_color = esc_attr( get_theme_mod( 'dark_color', zeitfresser_get_default_dark_color() ) );
$dynamic_css = ":root { --dark-color: $dark_color; }";
wp_add_inline_style( 'zeitfresser', $dynamic_css );
}
@@ -0,0 +1,25 @@
<?php
/* Default Font Size */
function zeitfresser_get_default_font_size() {
return 16;
}
function zeitfresser_get_default_logo_size() {
return 60;
}
function zeitfresser_get_default_site_identity_font_size() {
return 40;
}
function zeitfresser_get_default_font_weight() {
return "400";
}
function zeitfresser_get_default_line_height() {
return "1.6";
}
@@ -0,0 +1,29 @@
<?php
add_action( 'customize_register', 'zeitfresser_register_font_customization_section' );
function zeitfresser_register_font_customization_section( $wp_customize ) {
$wp_customize->add_section( 'daisy_blog_font_customization_section', array(
'title' => esc_html__( 'Font Options', 'zeitfresser' ),
'priority' => 20
) );
}
/* Add Default Font Customization for Customizer Settings */
require dirname( __FILE__ ) . '/default-font-customization.php';
require dirname( __FILE__ ) . '/logo-size/logo-size.php';
require dirname( __FILE__ ) . '/site-identity-font-size/site-identity-font-size.php';
require dirname( __FILE__ ) . '/font-size/font-size.php';
require dirname( __FILE__ ) . '/font-weight/font-weight.php';
require dirname( __FILE__ ) . '/line-height/line-height.php';
@@ -0,0 +1,10 @@
jQuery( function( $ ) {
wp.customize('font_size',function ( value ) {
value.bind(function ( to ) {
$( 'body,html' ).css( 'font-size', to+'px' );
}
);
} );
} );
@@ -0,0 +1,40 @@
<?php
add_action( 'customize_register', 'zeitfresser_font_size' );
function zeitfresser_font_size( $wp_customize ) {
$wp_customize->add_setting( 'font_size', array(
'default' => zeitfresser_get_default_font_size(),
'transport' => 'postMessage',
'sanitize_callback' => 'absint'
) );
$wp_customize->add_control( 'font_size', array(
'type' => 'number',
'settings' => 'font_size',
'label' => esc_html__( 'Body Font Size', 'zeitfresser' ),
'section' => 'daisy_blog_font_customization_section',
'input_attrs' => array(
'min' => 1,
'max' => 30
)
) );
}
add_action( 'customize_preview_init', 'zeitfresser_font_size_enqueue_scripts' );
function zeitfresser_font_size_enqueue_scripts() {
wp_enqueue_script( 'graphthemes-font-size-customizer', get_template_directory_uri() . '/inc/blocks/font-customization/font-size/customizer-font-size.js', array('jquery'), '', true );
}
add_action( 'wp_enqueue_scripts', 'zeitfresser_font_size_dynamic_css' );
function zeitfresser_font_size_dynamic_css() {
$font_size = esc_attr( get_theme_mod( 'font_size', zeitfresser_get_default_font_size() ) );
$font_size .= 'px';
$dynamic_css = "html,body{font-size:{$font_size};}";
wp_add_inline_style( 'zeitfresser', $dynamic_css );
}
@@ -0,0 +1,10 @@
jQuery( function( $ ) {
wp.customize('font_weight',function ( value ) {
value.bind(function ( to ) {
document.body.style.setProperty('--font-weight', to);
}
);
} );
} );
@@ -0,0 +1,40 @@
<?php
add_action( 'customize_register', 'zeitfresser_font_weight' );
function zeitfresser_font_weight( $wp_customize ) {
$wp_customize->add_setting( 'font_weight', array(
'default' => zeitfresser_get_default_font_weight(),
'transport' => 'postMessage',
'sanitize_callback' => 'absint'
) );
$wp_customize->add_control( 'font_weight', array(
'type' => 'number',
'settings' => 'font_weight',
'label' => esc_html__( 'Body Font Weight', 'zeitfresser' ),
'section' => 'daisy_blog_font_customization_section',
'input_attrs' => array(
'min' => 100,
'max' => 900,
'step' => 100
)
) );
}
add_action( 'customize_preview_init', 'zeitfresser_font_weight_enqueue_scripts' );
function zeitfresser_font_weight_enqueue_scripts() {
wp_enqueue_script( 'graphthemes-font-weight-customizer', get_template_directory_uri() . '/inc/blocks/font-customization/font-weight/customizer-font-weight.js', array('jquery'), '', true );
}
add_action( 'wp_enqueue_scripts', 'zeitfresser_font_weight_dynamic_css' );
function zeitfresser_font_weight_dynamic_css() {
$font_weight = esc_attr( get_theme_mod( 'font_weight', zeitfresser_get_default_font_weight() ) );
$dynamic_css = ":root { --font-weight: $font_weight; }";
wp_add_inline_style( 'zeitfresser', $dynamic_css );
}
@@ -0,0 +1,10 @@
jQuery( function( $ ) {
wp.customize('line_height',function ( value ) {
value.bind(function ( to ) {
document.body.style.setProperty('--line-height', to);
}
);
} );
} );
@@ -0,0 +1,40 @@
<?php
add_action( 'customize_register', 'zeitfresser_line_height' );
function zeitfresser_line_height( $wp_customize ) {
$wp_customize->add_setting( 'line_height', array(
'default' => zeitfresser_get_default_line_height(),
'transport' => 'postMessage',
'sanitize_callback' => 'zeitfresser_sanitize_float'
) );
$wp_customize->add_control( 'line_height', array(
'type' => 'number',
'settings' => 'line_height',
'label' => esc_html__( 'Line Height', 'zeitfresser' ),
'section' => 'daisy_blog_font_customization_section',
'input_attrs' => array(
'min' => 1,
'max' => 5,
'step' => 0.1
)
) );
}
add_action( 'customize_preview_init', 'zeitfresser_line_height_enqueue_scripts' );
function zeitfresser_line_height_enqueue_scripts() {
wp_enqueue_script( 'graphthemes-line-height-customizer', get_template_directory_uri() . '/inc/blocks/font-customization/line-height/customizer-line-height.js', array('jquery'), '', true );
}
add_action( 'wp_enqueue_scripts', 'zeitfresser_line_height_dynamic_css' );
function zeitfresser_line_height_dynamic_css() {
$line_height = esc_attr( get_theme_mod( 'line_height', zeitfresser_get_default_line_height() ) );
$dynamic_css = ":root { --line-height: $line_height; }";
wp_add_inline_style( 'zeitfresser', $dynamic_css );
}
@@ -0,0 +1,10 @@
jQuery( function( $ ) {
wp.customize('logo_size',function ( value ) {
value.bind(function ( to ) {
document.body.style.setProperty('--logo-size', to+'px');
}
);
} );
} );
@@ -0,0 +1,41 @@
<?php
add_action( 'customize_register', 'zeitfresser_logo_size' );
function zeitfresser_logo_size( $wp_customize ) {
$wp_customize->add_setting( 'logo_size', array(
'default' => zeitfresser_get_default_logo_size(),
'transport' => 'postMessage',
'sanitize_callback' => 'absint'
) );
$wp_customize->add_control( 'logo_size', array(
'type' => 'number',
'settings' => 'logo_size',
'priority' => 8,
'label' => esc_html__( 'Logo Size', 'zeitfresser' ),
'section' => 'title_tagline',
'input_attrs' => array(
'min' => 10,
'max' => 100
)
) );
}
add_action( 'customize_preview_init', 'zeitfresser_logo_size_enqueue_scripts' );
function zeitfresser_logo_size_enqueue_scripts() {
wp_enqueue_script( 'graphthemes-logo-size-customizer', get_template_directory_uri() . '/inc/blocks/font-customization/logo-size/customizer-logo-size.js', array('jquery'), '', true );
}
add_action( 'wp_enqueue_scripts', 'zeitfresser_logo_size_dynamic_css' );
function zeitfresser_logo_size_dynamic_css() {
$logo_size = esc_attr( get_theme_mod( 'logo_size', zeitfresser_get_default_logo_size() ) );
$logo_size .= 'px';
$dynamic_css = ":root { --logo-size: $logo_size; }";
wp_add_inline_style( 'zeitfresser', $dynamic_css );
}
@@ -0,0 +1,10 @@
jQuery( function( $ ) {
wp.customize('site_identity_font_size',function ( value ) {
value.bind(function ( to ) {
document.body.style.setProperty('--site-identity-font-size', to+'px');
}
);
} );
} );
@@ -0,0 +1,40 @@
<?php
add_action( 'customize_register', 'zeitfresser_site_identity_font_size' );
function zeitfresser_site_identity_font_size( $wp_customize ) {
$wp_customize->add_setting( 'site_identity_font_size', array(
'default' => zeitfresser_get_default_site_identity_font_size(),
'transport' => 'postMessage',
'sanitize_callback' => 'absint'
) );
$wp_customize->add_control( 'site_identity_font_size', array(
'type' => 'number',
'settings' => 'site_identity_font_size',
'label' => esc_html__( 'Site Identity Size', 'zeitfresser' ),
'section' => 'title_tagline',
'input_attrs' => array(
'min' => 10,
'max' => 40
)
) );
}
add_action( 'customize_preview_init', 'zeitfresser_site_identity_font_size_enqueue_scripts' );
function zeitfresser_site_identity_font_size_enqueue_scripts() {
wp_enqueue_script( 'graphthemes-site-identity-font-size-customizer', get_template_directory_uri() . '/inc/blocks/font-customization/site-identity-font-size/customizer-site-identity-font-size.js', array('jquery'), '', true );
}
add_action( 'wp_enqueue_scripts', 'zeitfresser_site_identity_font_size_dynamic_css' );
function zeitfresser_site_identity_font_size_dynamic_css() {
$site_identity_font_size = esc_attr( get_theme_mod( 'site_identity_font_size', zeitfresser_get_default_site_identity_font_size() ) );
$site_identity_font_size .= 'px';
$dynamic_css = ":root { --site-identity-font-size: $site_identity_font_size; }";
wp_add_inline_style( 'zeitfresser', $dynamic_css );
}
@@ -0,0 +1,14 @@
<?php
/* Default Font Family */
function zeitfresser_get_default_site_identity_font_family() {
return esc_html__( "Oswald", 'zeitfresser' );
}
function zeitfresser_get_default_main_font_family() {
return esc_html__( "Oswald", 'zeitfresser' );
}
function zeitfresser_get_default_secondary_font_family() {
return esc_html__( "Roboto", 'zeitfresser' );
}
+40
View File
@@ -0,0 +1,40 @@
<?php
/* Add Google Fonts */
require dirname( __FILE__ ) . '/google-fonts.php';
/* Add Default Font Family for Customizer Settings */
require dirname( __FILE__ ) . '/default-font-family.php';
include_once wp_normalize_path( dirname( __FILE__ ) . '/inc/helper-functions.php' );
include_once wp_normalize_path( dirname( __FILE__ ) . '/inc/class-webfonts-local.php' );
include_once wp_normalize_path( dirname( __FILE__ ) . '/inc/class-fonts-google-local.php' );
require dirname( __FILE__ ) . '/site-identity/site-identity-font-family.php';
require dirname( __FILE__ ) . '/main/main-font-family.php';
require dirname( __FILE__ ) . '/secondary/secondary-font-family.php';
add_action( 'wp_enqueue_scripts', 'zeitfresser_google_fonts_scripts', 5 );
function zeitfresser_google_fonts_scripts() {
$local_css = zeitfresser_get_local_webfonts_css();
wp_register_style( 'zeitfresser-webfonts', false, array(), ZEITFRESSER_VERSION );
wp_enqueue_style( 'zeitfresser-webfonts' );
if ( ! empty( $local_css ) ) {
wp_add_inline_style( 'zeitfresser-webfonts', $local_css );
return;
}
$args = zeitfresser_used_google_fonts();
$fonts_url = zeitfresser_fonts_url( $args );
if ( empty( $fonts_url ) ) {
return;
}
wp_enqueue_style( 'google-fonts', $fonts_url, array(), null );
}
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,457 @@
<?php
/**
* Handles downloading a font from the google-fonts API locally.
* Solves privacy concerns with Google's CDN
* and their sometimes less-than-transparent policies.
*
* @package zeitfresser
*/
// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
exit( 'Direct script access denied.' );
}
final class Daisy_Blog_Google_Local {
/**
* The name of the font-family
*
* @access private
* @var string
*/
private $family;
/**
* The system path where font-files are stored.
*
* @access private
* @var string
*/
private $folder_path;
/**
* The URL where files for this font can be found.
*
* @access private
* @var string
*/
private $folder_url;
/**
* An array of instances for this object.
*
* @static
* @access private
* @var array
*/
private static $instances = array();
/**
* Create an instance of this object for a specific font-family.
*
* @static
* @access public
* @param string $family The font-family name.
* @return Daisy_Blog_Google_Local
*/
public static function init( $family ) {
$key = sanitize_key( $family );
if ( ! isset( self::$instances[ $key ] ) ) {
self::$instances[ $key ] = new self( $family );
}
return self::$instances[ $key ];
}
/**
* Constructor.
*
* @access private
* @param string $family The font-family name.
*/
private function __construct( $family ) {
$this->family = $family;
$key = sanitize_key( $this->family );
$this->folder_path = $this->get_root_path() . "/$key";
$this->folder_url = $this->get_root_url() . "/$key";
$this->files = $this->get_font_family();
}
/**
* Gets the @font-face CSS.
*
* @access public
* @param array $variants The variants we want to get.
* @return string
*/
public function get_css( $variants = array() ) {
if ( ! $this->files ) {
return;
}
$key = md5( wp_json_encode( $this->files ) );
$cached = get_transient( $key );
if ( $cached ) {
return $cached;
}
$css = '';
// If $variants is empty then use all variants available.
if ( empty( $variants ) ) {
$variants = array_keys( $this->files );
}
// Download files.
$this->download_font_family( $variants );
// Create the @font-face CSS.
foreach ( $variants as $variant ) {
$css .= $this->get_variant_fontface_css( $variant );
}
set_transient( $key, $css, WEEK_IN_SECONDS );
return $css;
}
/**
* Download font-family files.
*
* @access public
* @param array $variants An array of variants to download. Leave empty to download all.
* @return void
*/
public function download_font_family( $variants = array() ) {
if ( empty( $variants ) ) {
$variants = array_keys( $this->files );
}
foreach ( $this->files as $variant => $file ) {
if ( in_array( $variant, $variants ) ) { // phpcs:ignore WordPress.PHP.StrictInArray.MissingTrueStrict
$this->download_font_file( $file );
}
}
}
/**
* Downloads a font-file and saves it locally.
*
* @access private
* @param string $url The URL of the file we want to get.
* @return bool
*/
private function download_font_file( $url ) {
$path = $this->folder_path . '/' . $this->get_filename_from_url( $url );
// If the folder doesn't exist, create it.
if ( ! file_exists( $this->folder_path ) ) {
wp_mkdir_p( $this->folder_path );
}
// If the file exists no reason to do anything.
if ( file_exists( $path ) ) {
return true;
}else{
$contents = $this->get_remote_url_contents( $url );
// Write file.
$filesystem = $this->get_filesystem();
return $filesystem->put_contents( $path, $contents, FS_CHMOD_FILE );
}
}
/**
* Gets the remote URL contents.
*
* @access private
* @param string $url The URL we want to get.
* @return string The contents of the remote URL.
*/
public function get_remote_url_contents( $url ) {
$response = wp_remote_get( $url );
if ( is_wp_error( $response ) ) {
return array();
}
$html = wp_remote_retrieve_body( $response );
if ( is_wp_error( $html ) ) {
return;
}
return $html;
}
/**
* Gets the filename by breaking-down the URL parts.
*
* @access private
* @param string $url The URL.
* @return string The filename.
*/
private function get_filename_from_url( $url ) {
$url_parts = explode( '/', $url );
$parts_count = count( $url_parts );
if ( 1 < $parts_count ) {
return $url_parts[ count( $url_parts ) - 1 ];
}
return $url;
}
/**
* Get the @font-face CSS for a specific variant.
*
* @access public
* @param string $variant The variant.
* @return string
*/
public function get_variant_fontface_css( $variant ) {
$font_face = "@font-face{font-family:'{$this->family}';";
// Get the font-style.
$font_style = ( false !== strpos( $variant, 'italic' ) ) ? 'italic' : 'normal';
$font_face .= "font-style:{$font_style};";
// Get the font-weight.
$font_weight = '400';
$font_weight = str_replace( 'italic', '', $variant );
$font_weight = ( ! $font_weight || 'regular' === $font_weight ) ? '400' : $font_weight;
$font_face .= "font-weight:{$font_weight};";
// Get the font-names.
$font_name_0 = $this->get_local_font_name( $variant, false );
$font_name_1 = $this->get_local_font_name( $variant, true );
$font_face .= "src:local('{$font_name_0}'),";
if ( $font_name_0 !== $font_name_1 ) {
$font_face .= "local('{$font_name_1}'),";
}
// Get the font-url.
$font_url = $this->get_variant_local_url( $variant );
$paths = $this->get_font_files_paths();
if ( ! file_exists( $paths[ $variant ] ) ) {
$font_url = $this->files[ $variant ];
}
// Get the font-format.
$font_format = ( strpos( $font_url, '.woff2' ) ) ? 'woff2' : 'truetype';
$font_format = ( strpos( $font_url, '.woff' ) && ! strpos( $font_url, '.woff2' ) ) ? 'woff' : $font_format;
$font_face .= "url({$font_url}) format('{$font_format}');}";
return $font_face;
}
/**
* Get the name of the font-family.
* This is used by @font-face in case the user already has the font downloaded locally.
*
* @access public
* @param string $variant The variant.
* @param bool $compact Whether we want the compact formatting or not.
* @return string
*/
public function get_local_font_name( $variant, $compact = false ) {
$variant_names = array(
'100' => 'Thin',
'100i' => 'Thin Italic',
'100italic' => 'Thin Italic',
'200' => 'Extra-Light',
'200i' => 'Extra-Light Italic',
'200italic' => 'Extra-Light Italic',
'300' => 'Light',
'300i' => 'Light Italic',
'300italic' => 'Light Italic',
'400' => 'Regular',
'regular' => 'Regular',
'400i' => 'Regular Italic',
'italic' => 'Italic',
'400italic' => 'Regular Italic',
'500' => 'Medium',
'500i' => 'Medium Italic',
'500italic' => 'Medium Italic',
'600' => 'Semi-Bold',
'600i' => 'Semi-Bold Italic',
'600italic' => 'Semi-Bold Italic',
'700' => 'Bold',
'700i' => 'Bold Italic',
'700italic' => 'Bold Italic',
'800' => 'Extra-Bold',
'800i' => 'Extra-Bold Italic',
'800italic' => 'Extra-Bold Italic',
'900' => 'Black',
'900i' => 'Black Italic',
'900italic' => 'Black Italic',
);
$variant = (string) $variant;
if ( $compact ) {
if ( isset( $variant_names[ $variant ] ) ) {
return str_replace( array( ' ', '-' ), '', $this->family ) . '-' . str_replace( array( ' ', '-' ), '', $variant_names[ $variant ] );
}
return str_replace( array( ' ', '-' ), '', $this->family );
}
if ( isset( $variant_names[ $variant ] ) ) {
return $this->family . ' ' . $variant_names[ $variant ];
}
return $this->family;
}
/**
* Gets the local URL for a variant.
*
* @access public
* @param string $variant The variant.
* @return string The URL.
*/
public function get_variant_local_url( $variant ) {
$local_urls = $this->get_font_files_urls_local();
if ( empty( $local_urls ) ) {
return;
}
// Return the specific variant if we can find it.
if ( isset( $local_urls[ $variant ] ) ) {
return $local_urls[ $variant ];
}
// Return regular if the one we want could not be found.
if ( isset( $local_urls['regular'] ) ) {
return $local_urls['regular'];
}
// Return the first available if all else failed.
$vals = array_values( $local_urls );
return $vals[0];
}
/**
* Get an array of local file URLs.
*
* @access public
* @return array
*/
public function get_font_files_urls_local() {
$urls = array();
$files = $this->get_font_files();
foreach ( $files as $key => $file ) {
$urls[ $key ] = $this->folder_url . '/' . $file;
}
return $urls;
}
/**
* Get an array of local file paths.
*
* @access public
* @return array
*/
public function get_font_files_paths() {
$paths = array();
$files = $this->get_font_files();
foreach ( $files as $key => $file ) {
$paths[ $key ] = $this->folder_path . '/' . $file;
}
return $paths;
}
/**
* Get an array of font-files.
* Only contains the filenames.
*
* @access public
* @return array
*/
public function get_font_files() {
$files = array();
foreach ( $this->files as $key => $url ) {
$files[ $key ] = $this->get_filename_from_url( $url );
}
return $files;
}
/**
* Gets the root fonts folder path.
* Other paths are built based on this.
*
* @access public
* @return string
*/
public function get_root_path() {
// Get the upload directory for this site.
$upload_dir = wp_upload_dir();
$path = untrailingslashit( wp_normalize_path( $upload_dir['basedir'] ) ) . '/webfonts';
// If the folder doesn't exist, create it.
if ( ! file_exists( $path ) ) {
wp_mkdir_p( $path );
}
// Return the path.
return apply_filters( 'daisy_blog_googlefonts_root_path', $path );
}
/**
* Gets the root folder url.
* Other urls are built based on this.
*
* @access public
* @return string
*/
public function get_root_url() {
// Get the upload directory for this site.
$upload_dir = wp_upload_dir();
// The URL.
$url = trailingslashit( $upload_dir['baseurl'] );
// Take care of domain mapping.
// When using domain mapping we have to make sure that the URL to the file
// does not include the original domain but instead the mapped domain.
if ( defined( 'DOMAIN_MAPPING' ) && DOMAIN_MAPPING ) {
if ( function_exists( 'domain_mapping_siteurl' ) && function_exists( 'get_original_url' ) ) {
$mapped_domain = domain_mapping_siteurl( false );
$original_domain = get_original_url( 'siteurl' );
$url = str_replace( $original_domain, $mapped_domain, $url );
}
}
$url = str_replace( array( 'https://', 'http://' ), '//', $url );
return apply_filters( 'daisy_blog_googlefonts_root_url', untrailingslashit( esc_url_raw( $url ) ) . '/webfonts' );
}
/**
* Get a font-family from the array of google-fonts.
*
* @access public
* @return array
*/
public function get_font_family() {
// Get the fonts array.
$fonts = $this->get_fonts();
if ( isset( $fonts[ $this->family ] ) ) {
return $fonts[ $this->family ];
}
return array();
}
/**
* Get the font defined in the google-fonts API.
*
* @access private
* @return array
*/
private function get_fonts() {
zeitfresser_get_google_fonts();
}
/**
* Gets the WP_Filesystem object.
*
* @access protected
* @return object
*/
protected function get_filesystem(){
// The WordPress filesystem.
global $wp_filesystem;
if ( empty( $wp_filesystem ) ) {
require_once wp_normalize_path( ABSPATH . '/wp-admin/includes/file.php' );
WP_Filesystem();
}
return $wp_filesystem;
}
}
@@ -0,0 +1,60 @@
<?php
/**
* Handles adding to the footer the @font-face CSS for locally-hosted google-fonts.
* Solves privacy concerns with Google's CDN and their sometimes less-than-transparent policies.
*
* @package zeitfresser
*/
/**
* Manages the way Google Fonts are enqueued.
*/
final class Daisy_Blog_Webfonts_Local{
/**
* @access protected
*/
protected $googlefonts;
/**
* Constructor.
*
* @access public
*/
public function __construct( $googlefonts ) {
$this->googlefonts = $googlefonts;
add_action( 'wp_footer', array( $this, 'add_styles' ) );
add_action( 'admin_footer', array( $this, 'add_styles' ) );
}
/**
* Webfont Loader for Google Fonts.
*
* @access public
*/
public function add_styles() {
$hosted_fonts = $this->googlefonts;
// Early exit if we don't need to add any fonts.
if ( empty( $hosted_fonts ) ) {
return;
}
// Make sure we only do this once per font-family.
$hosted_fonts = array_unique( $hosted_fonts );
// Start CSS.
$css = '';
foreach( $hosted_fonts as $family ){
// Add the @font-face CSS for this font-family.
$css .= Daisy_Blog_Google_Local::init( $family )->get_css();
}
// If we've got CSS, add to the footer.
if ( $css ) {
echo '<style id="daisy-blog-local-webfonts">' . $css . '</style>'; // WPCS: XSS ok.
}
}
}
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,334 @@
<?php
/**
* Function to check if it's a google font
*/
function zeitfresser_is_google_font( $font ){
$return = false;
$websafe_fonts = zeitfresser_get_websafe_font();
if( $font ){
if( array_key_exists( $font, $websafe_fonts ) ){
//Web Safe Font
$return = false;
}else{
//Google Font
$return = true;
}
}
return $return;
}
if( ! function_exists( 'zeitfresser_get_websafe_font' ) ) {
/**
* Function listing WebSafe Fonts and its attributes
*/
function zeitfresser_get_websafe_font(){
$standard_fonts = array(
'georgia-serif' => array(
'variants' => array( 'regular', 'italic', '700', '700italic' ),
'fonts' => 'Georgia, serif',
),
'palatino-serif' => array(
'variants' => array( 'regular', 'italic', '700', '700italic' ),
'fonts' => '"Palatino Linotype", "Book Antiqua", Palatino, serif',
),
'times-serif' => array(
'variants' => array( 'regular', 'italic', '700', '700italic' ),
'fonts' => '"Times New Roman", Times, serif',
),
'arial-helvetica' => array(
'variants' => array( 'regular', 'italic', '700', '700italic' ),
'fonts' => 'Arial, Helvetica, sans-serif',
),
'arial-gadget' => array(
'variants' => array( 'regular', 'italic', '700', '700italic' ),
'fonts' => '"Arial Black", Gadget, sans-serif',
),
'comic-cursive' => array(
'variants' => array( 'regular', 'italic', '700', '700italic' ),
'fonts' => '"Comic Sans MS", cursive, sans-serif',
),
'impact-charcoal' => array(
'variants' => array( 'regular', 'italic', '700', '700italic' ),
'fonts' => 'Impact, Charcoal, sans-serif',
),
'lucida' => array(
'variants' => array( 'regular', 'italic', '700', '700italic' ),
'fonts' => '"Lucida Sans Unicode", "Lucida Grande", sans-serif',
),
'tahoma-geneva' => array(
'variants' => array( 'regular', 'italic', '700', '700italic' ),
'fonts' => 'Tahoma, Geneva, sans-serif',
),
'trebuchet-helvetica' => array(
'variants' => array( 'regular', 'italic', '700', '700italic' ),
'fonts' => '"Trebuchet MS", Helvetica, sans-serif',
),
'verdana-geneva' => array(
'variants' => array( 'regular', 'italic', '700', '700italic' ),
'fonts' => 'Verdana, Geneva, sans-serif',
),
'courier' => array(
'variants' => array( 'regular', 'italic', '700', '700italic' ),
'fonts' => '"Courier New", Courier, monospace',
),
'lucida-monaco' => array(
'variants' => array( 'regular', 'italic', '700', '700italic' ),
'fonts' => '"Lucida Console", Monaco, monospace',
)
);
return apply_filters( 'daisy_blog_standard_fonts', $standard_fonts );
}
}
function zeitfresser_used_google_fonts() {
$main_font_family = zeitfresser_get_mod( 'main_font_family', zeitfresser_get_default_main_font_family() );
$secondary_font_family = zeitfresser_get_mod( 'secondary_font_family', zeitfresser_get_default_secondary_font_family() );
$site_identity_font_family = esc_attr( zeitfresser_get_mod( 'site_identity_font_family', zeitfresser_get_default_site_identity_font_family() ) );
$args['main_font_family'] = $main_font_family;
$args['secondary_font_family'] = $secondary_font_family;
$args['site_identity_font_family'] = $site_identity_font_family;
return $args;
}
add_action( 'wp_loaded', 'zeitfresser_google_font_local' );
if( ! function_exists( 'zeitfresser_google_font_local' ) ) {
/**
* Function that load Google Fonts used in our theme from customer locally.
* Solves privacy concerns with Google's CDN and their sometimes less-than-transparent policies.
*/
function zeitfresser_google_font_local() {
$args = array();
$fonts = zeitfresser_used_google_fonts();
foreach( $fonts as $font ) {
$is_google_font = zeitfresser_is_google_font( $font );
if( $is_google_font ) {
array_push( $args, $font );
}
}
new Daisy_Blog_Webfonts_Local( $args );
}
}
if ( ! function_exists( 'zeitfresser_font_weight_variants' ) ) {
/**
* Return the font variants used by the theme as an array.
*
* @return array
*/
function zeitfresser_font_weight_variants() {
$weights = explode( ';', zeitfresser_font_weight_query() );
$weights = array_map( 'trim', $weights );
$weights = array_filter( $weights );
if ( ! in_array( '400', $weights, true ) ) {
$weights[] = '400';
}
$weights = array_values( array_unique( $weights ) );
sort( $weights );
return $weights;
}
}
if ( ! function_exists( 'zeitfresser_get_local_webfonts_css' ) ) {
/**
* Build local @font-face CSS for currently selected Google fonts.
*
* Falls back to remote font file URLs per variant if a local file is not
* available yet, so typography does not break during warmup.
*
* @return string
*/
function zeitfresser_get_local_webfonts_css() {
$fonts = array_values( array_unique( array_filter( zeitfresser_used_google_fonts() ) ) );
$variants = zeitfresser_font_weight_variants();
$css = '';
foreach ( $fonts as $font ) {
if ( ! zeitfresser_is_google_font( $font ) ) {
continue;
}
$css .= Daisy_Blog_Google_Local::init( $font )->get_css( $variants );
}
return $css;
}
}
if ( ! function_exists( 'zeitfresser_get_local_webfont_urls' ) ) {
/**
* Extract local font asset URLs from a generated @font-face stylesheet.
*
* @param string $css Local webfont CSS.
* @return array
*/
function zeitfresser_get_local_webfont_urls( $css ) {
if ( empty( $css ) ) {
return array();
}
preg_match_all( '#url\(([^)]+)\)#', $css, $matches );
if ( empty( $matches[1] ) ) {
return array();
}
$urls = array();
foreach ( $matches[1] as $url ) {
$url = trim( $url, "\"'" );
if ( false !== strpos( $url, content_url() ) ) {
$urls[] = esc_url_raw( $url );
}
}
return array_values( array_unique( array_filter( $urls ) ) );
}
}
if( ! function_exists( 'zeitfresser_font_weight_query' ) ) {
/**
* Return the compact weight list used by the Zeitfresser theme.
*/
function zeitfresser_font_weight_query() {
$weights = array( '400', '500', '700' );
$body_weight = (string) zeitfresser_get_mod( 'font_weight', zeitfresser_get_default_font_weight() );
if ( preg_match( '/^\d{3}$/', $body_weight ) ) {
$weights[] = $body_weight;
}
$weights = array_values( array_unique( array_filter( $weights ) ) );
sort( $weights );
return implode( ';', $weights );
}
}
if( ! function_exists( 'zeitfresser_fonts_url' ) ) {
/**
* Returns a Google Fonts CSS2 URL for the selected theme fonts.
*/
function zeitfresser_fonts_url( $fonts = array() ) {
$font_families = array();
$weights = zeitfresser_font_weight_query();
foreach ( $fonts as $font ) {
if ( ! zeitfresser_is_google_font( $font ) ) {
continue;
}
$family_name = trim( (string) $font );
if ( '' === $family_name ) {
continue;
}
$font_families[] = 'family=' . str_replace( ' ', '+', $family_name ) . ':wght@' . $weights;
}
$font_families = array_values( array_unique( $font_families ) );
if ( empty( $font_families ) ) {
return '';
}
return esc_url( 'https://fonts.googleapis.com/css2?' . implode( '&', $font_families ) . '&display=swap' );
}
}
if( ! function_exists( 'zeitfresser_check_varient' ) ) {
/**
* Checks for matched varients in google fonts for typography fields
*/
function zeitfresser_check_varient( $font_family = 'serif', $font_variants = 'regular', $body = false ){
$variant = '';
$var = array();
$google_fonts = zeitfresser_get_google_fonts(); //Google Fonts
$websafe_fonts = zeitfresser_get_websafe_font(); //Standard Web Safe Fonts
if( array_key_exists( $font_family, $google_fonts ) ){
$variants = $google_fonts[ $font_family ][ 'variants' ];
if( in_array( $font_variants, $variants ) ){
if( $body ){ //LOAD ALL VARIANTS FOR BODY FONT
foreach( $variants as $v ){
$var[] = $v;
}
$variant = implode( ',', $var );
}else{
$variant = $font_variants;
}
}else{
$variant = 'regular';
}
}else{ //Standard Web Safe Fonts
if( array_key_exists( $font_family, $websafe_fonts ) ){
$variants = $websafe_fonts[ $font_family ][ 'variants' ];
if( in_array( $font_variants, $variants ) ){
if( $body ){ //LOAD ALL VARIANTS FOR BODY FONT
foreach( $variants as $v ){
$var[] = $v;
}
$variant = implode( ',', $var );
}else{
$variant = $font_variants;
}
}else{
$variant = 'regular';
}
}
}
return $variant;
}
}
if( ! function_exists( 'zeitfresser_get_google_fonts' ) ) {
/**
* Get Google Fonts
*/
function zeitfresser_get_google_fonts(){
$webfonts_json = @file_get_contents( get_template_directory_uri() . '/inc/blocks/font-family/inc/google-webfonts.json', true );
$fonts = json_decode( $webfonts_json, true );
$google_fonts = array();
if ( is_array( $fonts ) ) {
foreach ( $fonts['items'] as $font ) {
$google_fonts[ $font['family'] ] = array(
'variants' => $font['variants'],
);
}
}
return $google_fonts;
}
}
@@ -0,0 +1,11 @@
jQuery( function( $ ) {
wp.customize('main_font_family',function ( value ) {
value.bind(function ( to ) {
$("head").append("<link href='https://fonts.googleapis.com/css?family=" + to + ":200,300,400,500,600,700,800,900|' rel='stylesheet' type='text/css'>");
document.body.style.setProperty('--primary-font', to);
}
);
} );
} );
@@ -0,0 +1,40 @@
<?php
add_action( 'customize_register', 'zeitfresser_main_font_family' );
function zeitfresser_main_font_family( $wp_customize ) {
$wp_customize->add_setting( 'main_font_family', array(
'default' => zeitfresser_get_default_main_font_family(),
'transport' => 'postMessage',
'sanitize_callback' => 'zeitfresser_sanitize_google_fonts'
) );
$wp_customize->add_control( 'main_font_family', array(
'settings' => 'main_font_family',
'label' => esc_html__( 'Primary Font', 'zeitfresser' ),
'section' => 'daisy_blog_font_customization_section',
'type' => 'select',
'choices' => zeitfresser_google_fonts( zeitfresser_free_pro() ),
) );
}
add_action( 'customize_preview_init', 'zeitfresser_main_font_family_enqueue_scripts' );
function zeitfresser_main_font_family_enqueue_scripts() {
$main_font_family = esc_attr( get_theme_mod( 'main_font_family', zeitfresser_get_default_main_font_family() ) );
wp_enqueue_script( 'graphthemes-main-font-family-customizer', get_template_directory_uri() . '/inc/blocks/font-family/main/customizer-main-font-family.js', array('jquery'), '', true );
}
add_action( 'wp_enqueue_scripts', 'zeitfresser_main_font_family_dynamic_css' );
function zeitfresser_main_font_family_dynamic_css() {
$main_font_family = esc_attr( get_theme_mod( 'main_font_family', zeitfresser_get_default_main_font_family() ) );
$dynamic_css = ":root { --primary-font: $main_font_family; }";
wp_add_inline_style( 'zeitfresser', $dynamic_css );
}
@@ -0,0 +1,11 @@
jQuery( function( $ ) {
wp.customize('secondary_font_family',function ( value ) {
value.bind(function ( to ) {
$("head").append("<link href='https://fonts.googleapis.com/css?family=" + to + ":200,300,400,500,600,700,800,900|' rel='stylesheet' type='text/css'>");
document.body.style.setProperty('--secondary-font', to);
}
);
} );
} );
@@ -0,0 +1,42 @@
<?php
add_action( 'customize_register', 'zeitfresser_secondary_font_family' );
function zeitfresser_secondary_font_family( $wp_customize ) {
$wp_customize->add_setting( 'secondary_font_family', array(
'default' => zeitfresser_get_default_secondary_font_family(),
'transport' => 'postMessage',
'sanitize_callback' => 'zeitfresser_sanitize_google_fonts'
) );
$wp_customize->add_control( 'secondary_font_family', array(
'settings' => 'secondary_font_family',
'label' => esc_html__( 'Secondary Font', 'zeitfresser' ),
'section' => 'daisy_blog_font_customization_section',
'type' => 'select',
'choices' => zeitfresser_google_fonts( zeitfresser_free_pro() ),
) );
}
add_action( 'customize_preview_init', 'zeitfresser_secondary_font_family_enqueue_scripts' );
function zeitfresser_secondary_font_family_enqueue_scripts() {
$secondary_font_family = esc_attr( get_theme_mod( 'secondary_font_family', zeitfresser_get_default_secondary_font_family() ) );
wp_enqueue_script( 'graphthemes-secondary-font-family-customizer', get_template_directory_uri() . '/inc/blocks/font-family/secondary/customizer-secondary-font-family.js', array('jquery'), '', true );
}
add_action( 'wp_enqueue_scripts', 'zeitfresser_secondary_font_family_dynamic_css' );
function zeitfresser_secondary_font_family_dynamic_css() {
$secondary_font_family = esc_attr( get_theme_mod( 'secondary_font_family', zeitfresser_get_default_secondary_font_family() ) );
$dynamic_css = ":root { --secondary-font: $secondary_font_family; }";
wp_add_inline_style( 'zeitfresser', $dynamic_css );
}
@@ -0,0 +1,11 @@
jQuery( function( $ ) {
wp.customize('site_identity_font_family',function ( value ) {
value.bind(function ( to ) {
$("head").append("<link rel='stylesheet' href='https://fonts.googleapis.com/css?family="+to+":200,300,400,500,600,700,800,900|' rel='stylesheet' type='text/css'>");
document.body.style.setProperty('--site-identity-font-family', to);
}
);
} );
} );
@@ -0,0 +1,41 @@
<?php
add_action( 'customize_register', 'zeitfresser_site_identity_font_family' );
function zeitfresser_site_identity_font_family( $wp_customize ) {
$wp_customize->add_setting( 'site_identity_font_family', array(
'default' => zeitfresser_get_default_site_identity_font_family(),
'transport' => 'postMessage',
'sanitize_callback' => 'zeitfresser_sanitize_google_fonts'
) );
$wp_customize->add_control( 'site_identity_font_family', array(
'settings' => 'site_identity_font_family',
'label' => esc_html__( 'Site Title/Tagline Font', 'zeitfresser' ),
'section' => 'title_tagline',
'type' => 'select',
'choices' => zeitfresser_google_fonts( zeitfresser_free_pro() ),
) );
}
add_action( 'customize_preview_init', 'zeitfresser_site_identity_font_family_enqueue_scripts' );
function zeitfresser_site_identity_font_family_enqueue_scripts() {
$site_identity_font_family = esc_attr( get_theme_mod( 'site_identity_font_family', zeitfresser_get_default_site_identity_font_family() ) );
wp_enqueue_script( 'graphthemes-site-identity-font-family-customizer', get_template_directory_uri() . '/inc/blocks/font-family/site-identity/customizer-site-identity-font-family.js', array('jquery'), '', true );
}
add_action( 'wp_enqueue_scripts', 'zeitfresser_site_identity_font_family_dynamic_css' );
function zeitfresser_site_identity_font_family_dynamic_css() {
$site_identity_font_family = esc_attr( get_theme_mod( 'site_identity_font_family', zeitfresser_get_default_site_identity_font_family() ) );
$dynamic_css = ":root { --site-identity-font-family: $site_identity_font_family; }";
wp_add_inline_style( 'zeitfresser', $dynamic_css );
}
@@ -0,0 +1,5 @@
<?php
function zeitfresser_get_default_footer_copyright() {
return "Zeitfresser ©";
}
@@ -0,0 +1,26 @@
<?php
/* Add Default Copyright Text */
require dirname( __FILE__ ) . '/default-footer-copyright.php';
add_action( 'customize_register', 'zeitfresser_customize_register_footer_copyright' );
function zeitfresser_customize_register_footer_copyright( $wp_customize ) {
$wp_customize->add_section( 'daisy_blog_footer_copyright_section', array(
'title' => esc_html__( 'Footer Copyright', 'zeitfresser' ),
'priority' => 24
) );
$wp_customize->add_setting( 'footer_copyright_text', array(
'sanitize_callback' => 'wp_kses_post',
'default' => zeitfresser_get_default_footer_copyright()
) );
$wp_customize->add_control( 'footer_copyright_text', array(
'label' => esc_html__( 'Copyright Text', 'zeitfresser' ),
'section' => 'daisy_blog_footer_copyright_section',
'settings' => 'footer_copyright_text',
'type'=> 'textarea',
) );
}
@@ -0,0 +1,64 @@
<?php
add_action( 'customize_register', 'zeitfresser_container_width' );
function zeitfresser_container_width( $wp_customize ) {
$general_title = '<hr/><h2>' . esc_html__( 'General:', 'zeitfresser' ) . '</h2>';
$wp_customize->add_setting(
'zeitfresser_general_title',
array(
'default' => '',
'sanitize_callback' => 'wp_kses_post',
)
);
$wp_customize->add_control(
new Daisy_Blog_Custom_Text(
$wp_customize,
'zeitfresser_general_title',
array(
'section' => 'daisy_blog_general_customization_section',
'label' => $general_title,
'priority' => 5,
)
)
);
$wp_customize->add_setting('container_width', array(
'default' => zeitfresser_get_default_container_width(),
'sanitize_callback' => 'absint',
'transport' => 'postMessage',
));
$wp_customize->add_control( 'container_width', array(
'label' => esc_html__('Container Width', 'zeitfresser'),
'section' => 'daisy_blog_general_customization_section',
'type' => 'number',
'priority' => 10,
'input_attrs' => array(
'min' => 1000,
'max' => 1600
) )
);
}
add_action( 'customize_preview_init', 'zeitfresser_container_width_enqueue_scripts' );
function zeitfresser_container_width_enqueue_scripts() {
wp_enqueue_script( 'graphthemes-container-width-customizer', get_template_directory_uri() . '/inc/blocks/general/container-width/customizer-container-width.js', array('jquery'), '', true );
}
add_action( 'wp_enqueue_scripts', 'zeitfresser_container_width_dynamic_css' );
function zeitfresser_container_width_dynamic_css() {
$container_width = esc_attr( get_theme_mod( 'container_width', zeitfresser_get_default_container_width() ) );
$container_width .= 'px';
$dynamic_css = ":root { --container-width: $container_width; }";
wp_add_inline_style( 'zeitfresser', $dynamic_css );
}
@@ -0,0 +1,10 @@
jQuery( function( $ ) {
wp.customize('container_width',function ( value ) {
value.bind(function ( to ) {
document.body.style.setProperty('--container-width', to+"px");
}
);
} );
} );
+17
View File
@@ -0,0 +1,17 @@
<?php
/* Default General Customization */
function zeitfresser_get_default_breadcrumbs() {
return false;
}
function zeitfresser_get_default_sticky_menu() {
return false;
}
function zeitfresser_get_default_container_width() {
return 1400;
}
+29
View File
@@ -0,0 +1,29 @@
<?php
/**
* General customizer section.
*/
add_action( 'customize_register', 'zeitfresser_register_general_customization_section' );
/**
* Register the general options section.
*
* @param WP_Customize_Manager $wp_customize Customizer manager.
* @return void
*/
function zeitfresser_register_general_customization_section( $wp_customize ) {
$wp_customize->add_section(
'daisy_blog_general_customization_section',
array(
'title' => esc_html__( 'General Options', 'zeitfresser' ),
'priority' => 21,
)
);
}
require dirname( __FILE__ ) . '/default-general.php';
require dirname( __FILE__ ) . '/container-width/container-width.php';
require dirname( __FILE__ ) . '/social-links/social-links.php';
require dirname( __FILE__ ) . '/../post-snippet/default-post-snippet.php';
require dirname( __FILE__ ) . '/../post-snippet/excerpt/excerpt.php';
@@ -0,0 +1,83 @@
<?php
/**
* Social links customizer settings.
*
* @package zeitfresser
*/
if ( ! function_exists( 'zeitfresser_get_social_links' ) ) {
/**
* Return supported social network labels.
*
* @return array<string,string>
*/
function zeitfresser_get_social_links() {
return array(
'facebook' => esc_html__( 'Facebook', 'zeitfresser' ),
'instagram' => esc_html__( 'Instagram', 'zeitfresser' ),
'youtube' => esc_html__( 'Youtube', 'zeitfresser' ),
'linkedin' => esc_html__( 'LinkedIn', 'zeitfresser' ),
'twitter' => esc_html__( 'Twitter', 'zeitfresser' ),
'pinterest' => esc_html__( 'Pinterest', 'zeitfresser' ),
'tiktok' => esc_html__( 'TikTok', 'zeitfresser' ),
'mastodon' => esc_html__( 'Mastodon', 'zeitfresser' ),
'github' => esc_html__( 'GitHub', 'zeitfresser' ),
'matrix' => esc_html__( 'Matrix.org', 'zeitfresser' ),
);
}
}
add_action( 'customize_register', 'zeitfresser_social_links' );
/**
* Register social link customizer controls.
*
* @param WP_Customize_Manager $wp_customize Customizer manager.
* @return void
*/
function zeitfresser_social_links( $wp_customize ) {
$social_links = zeitfresser_get_social_links();
$social_links_title = '<hr/><h2>' . esc_html__( 'Social Links:', 'zeitfresser' ) . '</h2>';
$wp_customize->add_setting(
'social_links_title',
array(
'default' => '',
'sanitize_callback' => 'wp_kses_post',
)
);
$wp_customize->add_control(
new Daisy_Blog_Custom_Text(
$wp_customize,
'social_links_title',
array(
'section' => 'daisy_blog_general_customization_section',
'label' => $social_links_title,
'priority' => 20,
)
)
);
$social_priority = 21;
foreach ( $social_links as $social_key => $social_label ) {
$wp_customize->add_setting(
'social_links_' . $social_key,
array(
'default' => zeitfresser_get_social_link_default( $social_key ),
'sanitize_callback' => 'esc_url_raw',
)
);
$wp_customize->add_control(
'social_links_' . $social_key,
array(
'label' => $social_label,
'section' => 'daisy_blog_general_customization_section',
'type' => 'url',
'priority' => $social_priority++,
)
);
}
}
+18
View File
@@ -0,0 +1,18 @@
#customize-controls .control-section-button .accordion-section-title:hover,
#customize-controls .control-section-button .accordion-section-title:focus {
background-color: #fff;
}
.control-section-button .accordion-section-title .button {
margin-top: -4px;
font-weight: 400;
margin-left: 8px;
background: #e45157;
border: none;
color: #fff;
}
.rtl .control-section-button .accordion-section-title .button {
margin-left: 0;
margin-right: 8px;
}
+15
View File
@@ -0,0 +1,15 @@
(function (api) {
if (api != null) {
// Extends our custom "upgrade-to-pro" section.
api.sectionConstructor["button"] = api.Section.extend({
// No events for this type of section.
attachEvents: function () {},
// Always make the section active.
isContextuallyActive: function () {
return true;
},
});
} else {
}
})(wp.customize);
@@ -0,0 +1,74 @@
<?php
/**
* Pro customizer section.
*
* @since 1.0.0
* @access public
*/
class Daisy_Blog_Button_Control extends WP_Customize_Section {
/**
* The type of customize section being rendered.
*
* @since 1.0.0
* @access public
* @var string
*/
public $type = 'button';
/**
* Custom button text to output.
*
* @since 1.0.0
* @access public
* @var string
*/
public $pro_text = '';
/**
* Custom pro button URL.
*
* @since 1.0.0
* @access public
* @var string
*/
public $pro_url = '';
/**
* Add custom parameters to pass to the JS via JSON.
*
* @since 1.0.0
* @access public
* @return void
*/
public function json() {
$json = parent::json();
$json['pro_text'] = $this->pro_text;
$json['pro_url'] = esc_url( $this->pro_url );
return $json;
}
/**
* Outputs the Underscore.js template.
*
* @since 1.0.0
* @access public
* @return void
*/
protected function render_template() { ?>
<li id="accordion-section-{{ data.id }}" class="accordion-section control-section control-section-{{ data.type }} cannot-expand">
<h3 class="accordion-section-title">
{{ data.title }}
<# if ( data.pro_text && data.pro_url ) { #>
<a href="{{ data.pro_url }}" class="button button-secondary alignright" target="_blank">{{ data.pro_text }}</a>
<# } #>
</h3>
</li>
<?php }
}
@@ -0,0 +1,24 @@
<?php
if( class_exists( 'WP_Customize_control' ) ){
class Daisy_Blog_Custom_Text extends WP_Customize_Control
{
/**
* Render the content on the theme customizer page
*/
public function render_content()
{
?>
<label>
<strong class="customize-text_editor"><?php echo wp_kses_post( $this->label ); ?></strong>
<br />
<span class="customize-text_editor_desc">
<?php echo wp_kses_post( $this->description ); ?>
</span>
</label>
<?php
}
}//editor close
}//class close
@@ -0,0 +1,86 @@
<?php
/**
* Customizer Control: multi-check
*
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'Graphthemes_Multi_Check_Control' ) ) {
/**
* Adds a multicheck control.
*/
class Graphthemes_Multi_Check_Control extends Wp_Customize_Control {
/**
* The control type.
*
* @access public
* @var string
*/
public $type = 'multi-check';
public $tooltip = '';
public function to_json() {
parent::to_json();
if ( isset( $this->default ) ) {
$this->json['default'] = $this->default;
} else {
$this->json['default'] = $this->setting->default;
}
$this->json['value'] = $this->value();
$this->json['choices'] = $this->choices;
$this->json['link'] = $this->get_link();
$this->json['id'] = $this->id;
$this->json['tooltip'] = $this->tooltip;
$this->json['inputAttrs'] = '';
foreach ( $this->input_attrs as $attr => $value ) {
$this->json['inputAttrs'] .= $attr . '="' . esc_attr( $value ) . '" ';
}
}
public function enqueue() {
wp_enqueue_script( 'graphthemes-multi-check', get_template_directory_uri() . '/inc/blocks/includes/multicheck/multi-check.js', array( 'jquery' ), false, true );
}
protected function content_template() {
?>
<# if ( ! data.choices ) { return; } #>
<# if ( data.tooltip ) { #>
<a href="#" class="tooltip hint--left" data-hint="{{ data.tooltip }}"><span class='dashicons dashicons-info'></span></a>
<# } #>
<# if ( data.label ) { #>
<span class="customize-control-title">{{ data.label }}</span>
<# } #>
<# if ( data.description ) { #>
<span class="description customize-control-description">{{{ data.description }}}</span>
<# } #>
<ul>
<# for ( key in data.choices ) { #>
<li>
<label>
<input type="checkbox" value="{{ key }}"<# if ( _.contains( data.value, key ) ) { #> checked<# } #> />
{{ data.choices[ key ] }}
</label>
</li>
<# } #>
</ul>
<?php
}
}
}
@@ -0,0 +1,30 @@
wp.customize.controlConstructor['multi-check'] = wp.customize.Control.extend({
// When we're finished loading continue processing.
ready: function() {
'use strict';
var control = this;
// Save the value
control.container.on( 'change', 'input', function() {
var value = [],
i = 0;
// Build the value as an object using the sub-values from individual checkboxes.
jQuery.each( control.params.choices, function( key, subValue ) {
if ( control.container.find( 'input[value="' + key + '"]' ).is( ':checked' ) ) {
value[ i ] = key;
i++;
}
});
// Update the value in the customizer.
control.setting.set( value );
});
}
});
+17
View File
@@ -0,0 +1,17 @@
<?php
add_action( 'customize_register', 'zeitfresser_register_custom_controls' );
function zeitfresser_register_custom_controls( $wp_customize ) {
require_once ZEITFRESSER_BLOCKS_DIR_PATH . '/includes/button/class-button-control.php';
$wp_customize->register_control_type( 'Daisy_Blog_Button_Control' );
require_once ZEITFRESSER_BLOCKS_DIR_PATH . '/includes//custom-html/class-custom-html.php';
require_once ZEITFRESSER_BLOCKS_DIR_PATH . '/includes/toggle/class-toggle-control.php';
$wp_customize->register_control_type( 'Graphthemes_Toggle_Control' );
require_once ZEITFRESSER_BLOCKS_DIR_PATH . '/includes//multicheck/class-multi-check-control.php';
$wp_customize->register_control_type( 'Graphthemes_Multi_Check_Control' );
}
+50
View File
@@ -0,0 +1,50 @@
<?php
/* Sanitize Google Fonts */
function zeitfresser_sanitize_google_fonts( $input, $setting ) {
// Get list of choices from the control associated with the setting.
$choices = $setting->manager->get_control( $setting->id )->choices;
// If the input is a valid key, return it; otherwise, return the default.
return ( array_key_exists( $input, $choices ) ? $input : $setting->default );
}
function zeitfresser_sanitize_float( $input ) {
return filter_var($input, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION);
}
//checkbox sanitization function
function zeitfresser_sanitize_checkbox( $input ) {
//returns true if checkbox is checked
return ( ( isset( $input ) && true == $input ) ? true : false );
}
function zeitfresser_sanitize_select( $input, $setting ) {
// Ensure input is a slug.
$input = sanitize_key( $input );
// Get list of choices from the control associated with the setting.
$choices = $setting->manager->get_control( $setting->id )->choices;
// If the input is a valid key, return it; otherwise, return the default.
return ( array_key_exists( $input, $choices ) ? $input : $setting->default );
}
function zeitfresser_sanitize_array( $value ){
if ( is_array( $value ) ) {
foreach ( $value as $key => $subvalue ) {
$value[ $key ] = esc_attr( $subvalue );
}
return $value;
}
return esc_attr( $value );
}
@@ -0,0 +1,56 @@
<script type="text/javascript">
var fb = '<?php echo esc_html__( "Facebook", 'zeitfresser' ); ?>';
var twitter = '<?php echo esc_html__( "Twitter", 'zeitfresser' ); ?>';
var pinterest = '<?php echo esc_html__( "Pinterest", 'zeitfresser' ); ?>';
var linkedin = '<?php echo esc_html__( "Linkedin", 'zeitfresser' ); ?>';
</script>
<?php
$url = urlencode(get_the_permalink());
$title = html_entity_decode(get_the_title(), ENT_COMPAT, 'UTF-8');
$media = urlencode(get_the_post_thumbnail_url(get_the_ID(), 'full'));
$twitter_id = get_theme_mod('twitter_id');
$social_share = $args;
?>
<ul class="list-inline">
<li><?php esc_html_e( "Share", 'zeitfresser' ); ?>:</li>
<?php if( in_array( 'facebook', $social_share ) ) { ?>
<li><a href="https://www.facebook.com/sharer/sharer.php?u=<?php echo $url; ?>" onclick="return ! window.open( this.href, fb, 'width=500, height=500' )">
<svg version="1.1" viewBox="0 0 56.693 56.693" width="56.693px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M40.43,21.739h-7.645v-5.014c0-1.883,1.248-2.322,2.127-2.322c0.877,0,5.395,0,5.395,0V6.125l-7.43-0.029 c-8.248,0-10.125,6.174-10.125,10.125v5.518h-4.77v8.53h4.77c0,10.947,0,24.137,0,24.137h10.033c0,0,0-13.32,0-24.137h6.77 L40.43,21.739z"/></svg></a></li>
<?php } ?>
<?php if( in_array( 'twitter', $social_share ) ) { ?>
<li><a href="https://twitter.com/intent/tweet?text=<?php echo $title; ?>&amp;url=<?php echo $url; ?>&amp;via=<?php echo esc_html( $twitter_id ); ?>" onclick="return ! window.open( this.href, twitter, 'width=500, height=500' )">
<svg version="1.1" viewBox="0 0 512 512" width="512px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M492,109.5c-17.4,7.7-36,12.9-55.6,15.3c20-12,35.4-31,42.6-53.6c-18.7,11.1-39.4,19.2-61.5,23.5 C399.8,75.8,374.6,64,346.8,64c-53.5,0-96.8,43.4-96.8,96.9c0,7.6,0.8,15,2.5,22.1C172,179,100.6,140.4,52.9,81.7 c-8.3,14.3-13.1,31-13.1,48.7c0,33.6,17.1,63.3,43.1,80.7C67,210.7,52,206.3,39,199c0,0.4,0,0.8,0,1.2c0,47,33.4,86.1,77.7,95 c-8.1,2.2-16.7,3.4-25.5,3.4c-6.2,0-12.3-0.6-18.2-1.8c12.3,38.5,48.1,66.5,90.5,67.3c-33.1,26-74.9,41.5-120.3,41.5 c-7.8,0-15.5-0.5-23.1-1.4C62.9,432,113.8,448,168.4,448C346.6,448,444,300.3,444,172.2c0-4.2-0.1-8.4-0.3-12.5 C462.6,146,479,128.9,492,109.5z"/></svg>
</a>
</li>
<?php } ?>
<?php if( in_array( 'pinterest', $social_share ) ) { ?>
<li><a href="http://pinterest.com/pin/create/button/?url=<?php echo $url; ?>&amp;media=<?php echo $media; ?>&amp;description=<?php echo esc_html( $title ); ?>" onclick="return ! window.open( this.href, pinterest, 'width=500, height=500' )">
<svg viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g><path d="M12.486,4.771c-4.23,0-6.363,3.033-6.363,5.562c0,1.533,0.581,2.894,1.823,3.401c0.205,0.084,0.387,0.004,0.446-0.221 c0.041-0.157,0.138-0.553,0.182-0.717c0.061-0.221,0.037-0.3-0.127-0.495c-0.359-0.422-0.588-0.972-0.588-1.747 c0-2.25,1.683-4.264,4.384-4.264c2.392,0,3.706,1.463,3.706,3.412c0,2.568-1.137,4.734-2.824,4.734 c-0.932,0-1.629-0.77-1.405-1.715c0.268-1.13,0.786-2.347,0.786-3.16c0-0.729-0.392-1.336-1.2-1.336 c-0.952,0-1.718,0.984-1.718,2.304c0,0.841,0.286,1.409,0.286,1.409s-0.976,4.129-1.146,4.852c-0.34,1.44-0.051,3.206-0.025,3.385 c0.013,0.104,0.149,0.131,0.21,0.051c0.088-0.115,1.223-1.517,1.607-2.915c0.111-0.396,0.627-2.445,0.627-2.445 c0.311,0.589,1.213,1.108,2.175,1.108c2.863,0,4.804-2.608,4.804-6.103C18.123,7.231,15.886,4.771,12.486,4.771z"/></g></svg>
</a>
</li>
<?php } ?>
<?php if( in_array( 'linkedin', $social_share ) ) { ?>
<li><a href="https://www.linkedin.com/shareArticle?mini=true&url=<?php echo $url; ?>&title=<?php echo esc_html( $title ); ?>" onclick="return ! window.open( this.href, linkedin, 'width=500, height=500' )">
<svg baseProfile="tiny" version="1.2" viewBox="0 0 24 24" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g><path d="M8,19H5V9h3V19z M19,19h-3v-5.342c0-1.392-0.496-2.085-1.479-2.085c-0.779,0-1.273,0.388-1.521,1.165C13,14,13,19,13,19h-3 c0,0,0.04-9,0-10h2.368l0.183,2h0.062c0.615-1,1.598-1.678,2.946-1.678c1.025,0,1.854,0.285,2.487,1.001 C18.683,11.04,19,12.002,19,13.353V19z"/></g><g><ellipse cx="6.5" cy="6.5" rx="1.55" ry="1.5"/></g></svg>
</a>
</li>
<?php } ?>
<?php if( in_array( 'email', $social_share ) ) { ?>
<li><a href="mailto:?subject=<?php echo esc_attr( $title ); ?>&body=<?php echo $title . " " . $url; ?>" target="_blank">
<svg version="1.1" viewBox="0 0 100.354 100.352" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M93.09,76.224c0.047-0.145,0.079-0.298,0.079-0.459V22.638c0-0.162-0.032-0.316-0.08-0.462 c-0.007-0.02-0.011-0.04-0.019-0.06c-0.064-0.171-0.158-0.325-0.276-0.46c-0.008-0.009-0.009-0.02-0.017-0.029 c-0.005-0.005-0.011-0.007-0.016-0.012c-0.126-0.134-0.275-0.242-0.442-0.323c-0.013-0.006-0.023-0.014-0.036-0.02 c-0.158-0.071-0.33-0.111-0.511-0.123c-0.018-0.001-0.035-0.005-0.053-0.005c-0.017-0.001-0.032-0.005-0.049-0.005H8.465 c-0.017,0-0.033,0.004-0.05,0.005c-0.016,0.001-0.032,0.004-0.048,0.005c-0.183,0.012-0.358,0.053-0.518,0.125 c-0.01,0.004-0.018,0.011-0.028,0.015c-0.17,0.081-0.321,0.191-0.448,0.327c-0.005,0.005-0.011,0.006-0.016,0.011 c-0.008,0.008-0.009,0.019-0.017,0.028c-0.118,0.135-0.213,0.29-0.277,0.461c-0.008,0.02-0.012,0.04-0.019,0.061 c-0.048,0.146-0.08,0.3-0.08,0.462v53.128c0,0.164,0.033,0.32,0.082,0.468c0.007,0.02,0.011,0.039,0.018,0.059 c0.065,0.172,0.161,0.327,0.28,0.462c0.007,0.008,0.009,0.018,0.016,0.026c0.006,0.007,0.014,0.011,0.021,0.018 c0.049,0.051,0.103,0.096,0.159,0.14c0.025,0.019,0.047,0.042,0.073,0.06c0.066,0.046,0.137,0.083,0.21,0.117 c0.018,0.008,0.034,0.021,0.052,0.028c0.181,0.077,0.38,0.121,0.589,0.121h83.204c0.209,0,0.408-0.043,0.589-0.121 c0.028-0.012,0.054-0.03,0.081-0.044c0.062-0.031,0.124-0.063,0.181-0.102c0.03-0.021,0.057-0.048,0.086-0.071 c0.051-0.041,0.101-0.082,0.145-0.129c0.008-0.008,0.017-0.014,0.025-0.022c0.008-0.009,0.01-0.021,0.018-0.03 c0.117-0.134,0.211-0.288,0.275-0.458C93.078,76.267,93.083,76.246,93.09,76.224z M9.965,26.04l25.247,23.061L9.965,72.346V26.04z M61.711,47.971c-0.104,0.068-0.214,0.125-0.301,0.221c-0.033,0.036-0.044,0.083-0.073,0.121l-11.27,10.294L12.331,24.138h75.472 L61.711,47.971z M37.436,51.132l11.619,10.613c0.287,0.262,0.649,0.393,1.012,0.393s0.725-0.131,1.011-0.393l11.475-10.481 l25.243,23.002H12.309L37.436,51.132z M64.778,49.232L90.169,26.04v46.33L64.778,49.232z"/></svg></a>
</li>
<?php } ?>
</ul>
@@ -0,0 +1,65 @@
<?php
/**
* Customizer Control: toggle.
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'Graphthemes_Toggle_Control' ) ) {
/**
* Toggle control (modified checkbox).
*/
class Graphthemes_Toggle_Control extends Wp_Customize_Control {
public $type = 'toggle';
public $tooltip = '';
public function to_json() {
parent::to_json();
if ( isset( $this->default ) ) {
$this->json['default'] = $this->default;
} else {
$this->json['default'] = $this->setting->default;
}
$this->json['value'] = $this->value();
$this->json['link'] = $this->get_link();
$this->json['id'] = $this->id;
$this->json['tooltip'] = $this->tooltip;
$this->json['inputAttrs'] = '';
foreach ( $this->input_attrs as $attr => $value ) {
$this->json['inputAttrs'] .= $attr . '="' . esc_attr( $value ) . '" ';
}
}
public function enqueue() {
wp_enqueue_style( 'graphthemes-toggle', get_template_directory_uri() . '/inc/blocks/includes/toggle/toggle.css', null );
wp_enqueue_script( 'graphthemes-toggle', get_template_directory_uri() . '/inc/blocks/includes/toggle/toggle.js', array( 'jquery' ), false, true ); //for toggle
}
protected function content_template() {
?>
<# if ( data.tooltip ) { #>
<a href="#" class="tooltip hint--left" data-hint="{{ data.tooltip }}"><span class='dashicons dashicons-info'></span></a>
<# } #>
<label for="toggle_{{ data.id }}">
<span class="customize-control-title">
{{{ data.label }}}
</span>
<# if ( data.description ) { #>
<span class="description customize-control-description">{{{ data.description }}}</span>
<# } #>
<input {{{ data.inputAttrs }}} name="toggle_{{ data.id }}" id="toggle_{{ data.id }}" type="checkbox" value="{{ data.value }}" {{{ data.link }}}<# if ( '1' == data.value ) { #> checked<# } #> hidden />
<span class="switch"></span>
</label>
<?php
}
}
}
+64
View File
@@ -0,0 +1,64 @@
.customize-control-toggle label {
display: flex;
flex-wrap: wrap;
}
.customize-control-toggle label .customize-control-title {
width: calc(100% - 55px);
}
.customize-control-toggle label .description {
order: 99;
}
.customize-control-toggle input[type="checkbox"] {
display: none;
}
.customize-control-toggle .switch {
border: 1px solid rgba(0, 0, 0, 0.1);
display: inline-block;
width: 35px;
height: 12px;
border-radius: 8px;
background: #ccc;
vertical-align: middle;
position: relative;
cursor: pointer;
user-select: none;
transition: background 350ms ease;
}
.customize-control-toggle .switch:before, .customize-control-toggle .switch:after {
content: "";
display: block;
width: 20px;
height: 20px;
border-radius: 50%;
position: absolute;
top: 50%;
left: -3px;
transition: all 350ms cubic-bezier(0, 0.95, 0.38, 0.98), background 150ms ease;
}
.customize-control-toggle .switch:before {
background: rgba(0, 0, 0, 0.2);
transform: translate3d(0, -50%, 0) scale(0);
}
.customize-control-toggle .switch:after {
background: #999;
border: 1px solid rgba(0, 0, 0, 0.1);
transform: translate3d(0, -50%, 0);
}
.customize-control-toggle .switch:active:before {
transform: translate3d(0, -50%, 0) scale(3);
}
.customize-control-toggle input:checked + .switch {
background: rgba(52, 152, 222, 0.3);
}
.customize-control-toggle input:checked + .switch:before {
background: rgba(52, 152, 222, 0.075);
transform: translate3d(100%, -50%, 0) scale(1);
}
.customize-control-toggle input:checked + .switch:after {
background: #3498DE;
transform: translate3d(100%, -50%, 0);
}
.customize-control-toggle input:checked + .switch:active:before {
background: rgba(52, 152, 222, 0.075);
transform: translate3d(100%, -50%, 0) scale(3);
}
+18
View File
@@ -0,0 +1,18 @@
wp.customize.controlConstructor['toggle'] = wp.customize.Control.extend({
ready: function() {
'use strict';
var control = this,
checkboxValue = control.setting._value;
// Save the value
this.container.on( 'change', 'input', function() {
checkboxValue = ( jQuery( this ).is( ':checked' ) ) ? true : false;
control.setting.set( checkboxValue );
});
}
});
@@ -0,0 +1,61 @@
<?php
/* Default Post Detail Author*/
function zeitfresser_get_default_post_detail_author() {
return false;
}
/* Default Post Detail Category*/
function zeitfresser_get_default_post_detail_category() {
return false;
}
/* Default Post Detail Comment*/
function zeitfresser_get_default_post_detail_comment() {
return true;
}
/* Default Post Detail Date*/
function zeitfresser_get_default_post_detail_date() {
return true;
}
/* Default Post Detail Featured Image*/
function zeitfresser_get_default_post_detail_featured_image() {
return false;
}
/* Default Post Detail Tag*/
function zeitfresser_get_default_post_detail_featured_image_size() {
return esc_html__( 'large', 'zeitfresser' );
}
/* Default Post Detail Tag*/
function zeitfresser_get_default_post_detail_tag() {
return false;
}
/* Default Post Detail Social Share */
function zeitfresser_get_default_post_detail_social_share() {
return false;
}
/* Default Post Detail Social Share Options*/
function zeitfresser_get_default_post_detail_social_share_options() {
return array();
}
/* Default Post Detail Author Block Options */
function zeitfresser_get_default_post_detail_author_block() {
return false;
}
/* Default Post Detail Related Articles Options*/
function zeitfresser_get_default_post_detail_related_articles() {
return true;
}
/* Default Post Detail Related Articles Title */
function zeitfresser_get_default_post_detail_related_articles_title() {
return esc_html__( "Related Articles", 'zeitfresser' );
}
+9
View File
@@ -0,0 +1,9 @@
<?php
/**
* Post detail defaults only.
*
* The frontend still uses these defaults, but the related controls are intentionally
* hidden to keep the customizer lean for the Zeitfresser setup.
*/
require dirname( __FILE__ ) . '/default-post-detail.php';
@@ -0,0 +1,61 @@
<?php
/* Default Post Snippet Author*/
function zeitfresser_get_default_post_snippet_author() {
return false;
}
/* Default Post Snippet Category*/
function zeitfresser_get_default_post_snippet_category() {
return false;
}
/* Default Post Snippet Comment*/
function zeitfresser_get_default_post_snippet_comment() {
return false;
}
/* Default Post Snippet Date*/
function zeitfresser_get_default_post_snippet_date() {
return false;
}
/* Default Post Snippet Featured Image*/
function zeitfresser_get_default_post_snippet_featured_image() {
return true;
}
/* Default Post Snippet Tag*/
function zeitfresser_get_default_post_snippet_featured_image_size() {
return esc_html__( 'thumbnail', 'zeitfresser' );
}
/* Default Post Snippet Tag*/
function zeitfresser_get_default_post_snippet_tag() {
return false;
}
/* Default Post Snippet Excerpt Szie */
function zeitfresser_get_default_post_snippet_excerpt_size() {
return 20;
}
/* Default Post Snippet Read More */
function zeitfresser_get_default_post_snippet_show_hide_read_more() {
return false;
}
/* Default Post Snippet Read More Text */
function zeitfresser_get_default_post_snippet_read_more_text() {
return esc_html__( "Read More", 'zeitfresser' );
}
/* Default Post Snippet Social Share */
function zeitfresser_get_default_post_snippet_social_share() {
return false;
}
/* Default Post Snippet Social Share Options*/
function zeitfresser_get_default_post_snippet_social_share_options() {
return array();
}
@@ -0,0 +1,23 @@
<?php
add_action( 'customize_register', 'zeitfresser_post_snippet_excerpt_size' );
function zeitfresser_post_snippet_excerpt_size( $wp_customize ) {
$wp_customize->add_setting( 'post_snippet_excerpt_size', array(
'sanitize_callback' => 'absint',
'default' => zeitfresser_get_default_post_snippet_excerpt_size()
) );
$wp_customize->add_control( 'post_snippet_excerpt_size', array(
'settings' => 'post_snippet_excerpt_size',
'type' => 'number',
'section' => 'daisy_blog_general_customization_section',
'label' => esc_html__( 'Excerpt Size', 'zeitfresser' ),
'priority' => 11,
'input_attrs' => array(
'min' => 5,
'max' => 80,
),
) );
}
+25
View File
@@ -0,0 +1,25 @@
<?php
/**
* Post snippet customizer section.
*/
add_action( 'customize_register', 'zeitfresser_register_post_snippet_customization_section' );
/**
* Register the post snippet section.
*
* @param WP_Customize_Manager $wp_customize Customizer manager.
* @return void
*/
function zeitfresser_register_post_snippet_customization_section( $wp_customize ) {
$wp_customize->add_section(
'daisy_blog_post_snippet_customization_section',
array(
'title' => esc_html__( 'Post Snippet', 'zeitfresser' ),
'priority' => 22,
)
);
}
require dirname( __FILE__ ) . '/default-post-snippet.php';
require dirname( __FILE__ ) . '/excerpt/excerpt.php';
@@ -0,0 +1,11 @@
<?php
/* Default Site Title Show Hide Option */
function zeitfresser_get_default_site_title_show_hide() {
return true;
}
/* Default Site Tagline Show Hide Option */
function zeitfresser_get_default_site_tagline_show_hide() {
return true;
}
@@ -0,0 +1,9 @@
<?php
/* Default Site Identity Settings */
require dirname( __FILE__ ) . '/default-site-identity.php';
require dirname( __FILE__ ) . '/site-title/site-title.php';
require dirname( __FILE__ ) . '/site-tagline/site-tagline.php';
@@ -0,0 +1,18 @@
<?php
add_action( 'customize_register', 'zeitfresser_show_hide_site_tagline' );
function zeitfresser_show_hide_site_tagline( $wp_customize ) {
$wp_customize->add_setting( 'show_hide_site_tagline', array(
'sanitize_callback' => 'zeitfresser_sanitize_checkbox',
'default' => zeitfresser_get_default_site_tagline_show_hide()
) );
$wp_customize->add_control( new Graphthemes_Toggle_Control( $wp_customize, 'show_hide_site_tagline', array(
'label' => esc_html__( 'Show/Hide Site Tagline','zeitfresser' ),
'section' => 'title_tagline',
'settings' => 'show_hide_site_tagline',
'type'=> 'toggle',
) ) );
}
@@ -0,0 +1,18 @@
<?php
add_action( 'customize_register', 'zeitfresser_show_hide_site_title' );
function zeitfresser_show_hide_site_title( $wp_customize ) {
$wp_customize->add_setting( 'show_hide_site_title', array(
'sanitize_callback' => 'zeitfresser_sanitize_checkbox',
'default' => zeitfresser_get_default_site_title_show_hide(),
) );
$wp_customize->add_control( new Graphthemes_Toggle_Control( $wp_customize, 'show_hide_site_title', array(
'label' => esc_html__( 'Show/Hide Site Title','zeitfresser' ),
'section' => 'title_tagline',
'settings' => 'show_hide_site_title',
'type'=> 'toggle',
) ) );
}