| Server IP : 104.26.4.103 / Your IP : 216.73.216.4 Web Server : nginx/1.27.1 System : Linux in-5 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64 User : arabianexpress ( 1872) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v9321/buzzbitesv3/public_html/wp-content/themes/bite/theme-specific/ |
Upload File : |
<?php
/**
* Theme improves - functions and definitions for the theme improvements (compatibility with WordPress and plugins updates)
*
* @package BITE
* @since BITE 2.31.3
*/
//----------------------------------------------------------------------
//-- Additional theme options
//----------------------------------------------------------------------
// Theme init priorities:
// 3 - add/remove Theme Options elements
if ( ! function_exists( 'bite_improves_add_disable_hyphens_option' ) ) {
add_action( 'after_setup_theme', 'bite_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 bite_improves_add_disable_hyphens_option() {
// Add 'General' section to the Typography
bite_storage_set_array_after( 'options', 'fonts', array(
// Fonts - General
'font_general_section' => array(
'title' => esc_html__( 'General', 'bite' ),
'desc' => '',
'demo' => true,
'type' => 'section',
),
'font_general_info' => array(
'title' => esc_html__( 'General', 'bite' ),
'desc' => wp_kses_data( __( 'General typography settings.', 'bite' ) ),
'demo' => true,
'type' => 'info',
),
'disable_hyphens' => array(
'title' => esc_html__( 'Disable word hyphenation', 'bite' ),
'desc' => wp_kses_data( __( 'Disable word hyphenation for the headings on tablets and mobile devices.', 'bite' ) ),
'std' => 0,
'type' => 'switch',
),
) );
}
}
if ( ! function_exists( 'bite_improves_add_disable_hyphens_styles' ) ) {
add_action( 'wp_head', 'bite_improves_add_disable_hyphens_styles' );
/**
* Add styles for the 'Disable word hyphenation' option
*
* @hooked 'wp_head'
*/
function bite_improves_add_disable_hyphens_styles() {
// Get 'Disable word hyphenation' option value
$disable_hyphens = bite_get_theme_option( 'disable_hyphens' );
// Add styles
if ( (int)$disable_hyphens > 0 ) {
bite_add_inline_css( '
@media (max-width: 1279px) {
h1, h2, h3, h4, h5, h6 {
hyphens: none;
word-break: keep-all;
white-space: normal;
}
}
' );
}
}
}