Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
thepassage.overlookedtracks.com
/
wp-content9
/
themes
/
anesta
/
theme-specific
/
Editing: theme-improves.php
<?php /** * Theme improves - functions and definitions for the theme improvements (compatibility with WordPress and plugins updates) * * @package ANESTA * @since ANESTA 2.31.3 */ //---------------------------------------------------------------------- //-- Additional theme options //---------------------------------------------------------------------- // Theme init priorities: // 3 - add/remove Theme Options elements if ( ! function_exists( 'anesta_improves_add_disable_hyphens_option' ) ) { add_action( 'after_setup_theme', 'anesta_improves_add_disable_hyphens_option', 3 ); /** * Add 'General' section to the Typography options with the 'Disable word hyphenation' option * * @hooked 'after_setup_theme', 3 */ function anesta_improves_add_disable_hyphens_option() { // Add 'General' section to the Typography anesta_storage_set_array_after( 'options', 'fonts', array( // Fonts - General 'font_general_section' => array( 'title' => esc_html__( 'General', 'anesta' ), 'desc' => '', 'demo' => true, 'type' => 'section', ), 'font_general_info' => array( 'title' => esc_html__( 'General', 'anesta' ), 'desc' => wp_kses_data( __( 'General typography settings.', 'anesta' ) ), 'demo' => true, 'type' => 'info', ), 'disable_hyphens' => array( 'title' => esc_html__( 'Disable word hyphenation', 'anesta' ), 'desc' => wp_kses_data( __( 'Disable word hyphenation for the headings on tablets and mobile devices.', 'anesta' ) ), 'std' => 0, 'type' => 'switch', ), ) ); } } if ( ! function_exists( 'anesta_improves_add_disable_hyphens_styles' ) ) { add_action( 'wp_head', 'anesta_improves_add_disable_hyphens_styles' ); /** * Add styles for the 'Disable word hyphenation' option * * @hooked 'wp_head' */ function anesta_improves_add_disable_hyphens_styles() { // Get 'Disable word hyphenation' option value $disable_hyphens = anesta_get_theme_option( 'disable_hyphens' ); // Add styles if ( (int)$disable_hyphens > 0 ) { anesta_add_inline_css( ' @media (max-width: 1279px) { h1, h2, h3, h4, h5, h6 { hyphens: none; word-break: keep-all; white-space: normal; } } ' ); } } }
Save
Cancel