| Server IP : 103.191.208.88 / Your IP : 216.73.216.44 Web Server : Microsoft-IIS/10.0 System : Windows NT COSMIC 10.0 build 20348 (Windows Server 2022) AMD64 User : IWPD_1831(willswel_) ( 0) PHP Version : 8.2.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : D:/Inetpub/vhosts/willswell.com/httpdocs/wp-content/themes/flex-multi-business/inc/ |
Upload File : |
<?php
/**
* excerpt lenth.
*/
if (!function_exists('flex_multi_business_custom_excerpt_length')) :
function flex_multi_business_custom_excerpt_length($length)
{
if (is_admin()) {
return $length;
}
$excpt_length = get_theme_mod('flex_multi_business_excerpt_general_section','55');
if (!empty($excpt_length)) {
return $excpt_length;
}
return 55;
}
endif;
add_filter('excerpt_length', 'flex_multi_business_custom_excerpt_length');
function flex_multi_business_excerpt_more( $more ) {
if ( is_admin() ) {
return $more;
}
return '...';
}
add_filter('excerpt_more', 'flex_multi_business_excerpt_more');
function flex_multi_business_set_post_view() {
$key = 'post_views_count';
$post_id = get_the_ID();
$count = (int) get_post_meta( $post_id, $key, true );
$count++;
update_post_meta( $post_id, $key, $count );
}
/*radio button sanitization*/
function flex_multi_business_sanitize_choices( $input, $setting ) {
global $wp_customize;
$control = $wp_customize->get_control( $setting->id );
if ( array_key_exists( $input, $control->choices ) ) {
return $input;
} else {
return $setting->default;
}
}
?>