File: /home/alfouzantranspor/www/wp-content/themes/mining-logistic/inc/core/template-functions.php
<?php
/**
* Functions which enhance the theme by hooking into WordPress
*
* @package Mining-logistic
*/
/**
* Add customizer default values.
*
* @param array $default_options
* @return array
*/
function mining_logistic_customizer_add_defaults( $default_options) {
$defaults = array(
// Excerpt Options
'mining_logistic_excerpt_length' => 15,
);
$updated_defaults = wp_parse_args( $defaults, $default_options );
return $updated_defaults;
}
add_filter( 'mining_logistic_customizer_defaults', 'mining_logistic_customizer_add_defaults' );
/**
* Returns theme mod value saved for option merging with default option if available.
* @since 1.0
*/
function mining_logistic_gtm( $option ) {
// Get our Customizer defaults
$defaults = apply_filters( 'mining_logistic_customizer_defaults', true );
return isset( $defaults[ $option ] ) ? get_theme_mod( $option, $defaults[ $option ] ) : get_theme_mod( $option );
}
if ( ! function_exists( 'mining_logistic_excerpt_length' ) ) :
/**
* Sets the post excerpt length to n words.
*
* function tied to the excerpt_length filter hook.
* @uses filter excerpt_length
*/
function mining_logistic_excerpt_length( $length ) {
if ( is_admin() ) {
return $length;
}
// Getting data from Theme Options
$length = mining_logistic_gtm( 'mining_logistic_excerpt_length' );
return absint( $length );
} // mining_logistic_excerpt_length.
endif;
add_filter( 'excerpt_length', 'mining_logistic_excerpt_length', 999 );