Current File : /home/kelaby89/muzza.fit/wp-content/themes/deadlift/inc/customizer/mods/background-image.php |
<?php
/**
* Deadlift background_image
*
* @package WordPress
* @subpackage Deadlift
* @version 1.8.2
*/
defined( 'ABSPATH' ) || exit;
/**
* Backgorund image mods
*
* @param array $mods Array of mods.
* @return array
*/
function deadlift_set_background_image_mods( $mods ) {
/* Move background image setting here and rename the seciton title */
$mods['background_image'] = array(
'icon' => 'format-image',
'id' => 'background_image',
'title' => esc_html__( 'Background Image', 'deadlift' ),
'options' => array(),
);
return $mods;
}
add_filter( 'deadlift_customizer_mods', 'deadlift_set_background_image_mods' );