Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/middletvnew/wp-content/themes/mediaflex/theme-specific/ |
Upload File : |
<?php
/**
* Theme improves - functions and definitions for the theme improvements (compatibility with WordPress and plugins updates)
*
* @package MEDIAFLEX
* @since MEDIAFLEX 2.31.3
*/
//----------------------------------------------------------------------
//-- Additional theme options
//----------------------------------------------------------------------
// Theme init priorities:
// 3 - add/remove Theme Options elements
if ( ! function_exists( 'mediaflex_improves_add_disable_hyphens_option' ) ) {
add_action( 'after_setup_theme', 'mediaflex_improves_add_disable_hyphens_option', 3 );
/**
* Add 'General' section to the Typography options with the 'Disable word hyphenation' option
*
* @hooks after_setup_theme, 3
*/
function mediaflex_improves_add_disable_hyphens_option() {
// Add 'General' section to the Typography
mediaflex_storage_set_array_after( 'options', 'fonts', array(
// Fonts - General
'font_general_section' => array(
'title' => esc_html__( 'General', 'mediaflex' ),
'desc' => '',
'demo' => true,
'type' => 'section',
),
'font_general_info' => array(
'title' => esc_html__( 'General', 'mediaflex' ),
'desc' => wp_kses_data( __( 'General typography settings.', 'mediaflex' ) ),
'demo' => true,
'type' => 'info',
),
'disable_hyphens' => array(
'title' => esc_html__( 'Disable word hyphenation', 'mediaflex' ),
'desc' => wp_kses_data( __( 'Disable word hyphenation for the headings on tablets and mobile devices.', 'mediaflex' ) ),
'std' => 0,
'type' => 'switch',
),
) );
}
}
if ( ! function_exists( 'mediaflex_improves_add_disable_hyphens_styles' ) ) {
add_action( 'wp_head', 'mediaflex_improves_add_disable_hyphens_styles' );
/**
* Add styles for the 'Disable word hyphenation' option
*
* @hook wp_head
*/
function mediaflex_improves_add_disable_hyphens_styles() {
// Get 'Disable word hyphenation' option value
$disable_hyphens = mediaflex_get_theme_option( 'disable_hyphens' );
// Add styles
if ( (int)$disable_hyphens > 0 ) {
mediaflex_add_inline_css( '
@media (max-width: 1279px) {
h1, h2, h3, h4, h5, h6 {
hyphens: none;
word-break: keep-all;
white-space: normal;
}
}
' );
}
}
}