web-dev-qa-db-fra.com

Modification du fond CSS personnalisé

J'ai ajouté la fonction add_theme_support( 'custom-background'); à mon functions.php mais la css ajoutée au wp_head n'est pas celle que je souhaite.

<style type="text/css" id="custom-background-css">
body.custom-background { background-image: url('http://localhost/wordpress/wp-content/uploads/2016/05/bg_green_dark.jpg'); background-repeat: no-repeat; background-position: top center; background-attachment: fixed; }
</style>

J'ai une div en arrière-plan.

<div id="bg"></div>

Et je veux ajouter custom-background à la div au lieu du corps.

Y'a-t'il un quelconque moyen d'y arriver?

3
J. Doe

Oui c'est possible Prenez un regardez le codex et vous verrez que vous pouvez passer des arguments avec add_theme_support( 'custom-background'). L'un d'eux est la fonction de rappel qui génère les balises <style>: _custom_background_cb. Vous pouvez passer votre propre fonction comme argument à add_theme_support.

Voici le code de la fonction d'origine (extrait de WP 4.5, vérifiez si vous l'avez lu plus tard):

function _custom_background_cb() {
    // $background is the saved custom image, or the default image.
    $background = set_url_scheme( get_background_image() );

    // $color is the saved custom color.
    // A default has to be specified in style.css. It will not be printed here.
    $color = get_background_color();

    if ( $color === get_theme_support( 'custom-background', 'default-color' ) ) {
        $color = false;
    }

    if ( ! $background && ! $color )
        return;

    $style = $color ? "background-color: #$color;" : '';

    if ( $background ) {
        $image = " background-image: url('$background');";

        $repeat = get_theme_mod( 'background_repeat', get_theme_support( 'custom-background', 'default-repeat' ) );
        if ( ! in_array( $repeat, array( 'no-repeat', 'repeat-x', 'repeat-y', 'repeat' ) ) )
            $repeat = 'repeat';
        $repeat = " background-repeat: $repeat;";

        $position = get_theme_mod( 'background_position_x', get_theme_support( 'custom-background', 'default-position-x' ) );
        if ( ! in_array( $position, array( 'center', 'right', 'left' ) ) )
            $position = 'left';
        $position = " background-position: top $position;";

        $attachment = get_theme_mod( 'background_attachment', get_theme_support( 'custom-background', 'default-attachment' ) );
        if ( ! in_array( $attachment, array( 'fixed', 'scroll' ) ) )
            $attachment = 'scroll';
        $attachment = " background-attachment: $attachment;";

        $style .= $image . $repeat . $position . $attachment;
    }
?>
<style type="text/css" id="custom-background-css">
body.custom-background { <?php echo trim( $style ); ?> }
</style>
<?php
}

Copiez ceci, renommez-le my_callback_function (ou plus), changez les dernières lignes où le css est imprimé et transmettez-le comme un rappel comme ceci:

$defaults = array(
    'default-color'          => '',
    'default-image'          => '',
    'default-repeat'         => '',
    'default-position-x'     => '',
    'default-attachment'     => '',
    'wp-head-callback'       => 'my_callback_function',
    'admin-head-callback'    => '',
    'admin-preview-callback' => ''
);
add_theme_support( 'custom-background', $defaults );
7
cjbj