Arkaplan resmi admin tarafından değiştirilebilir tema yaratmak istiyorum.Bunun için function.php ye aşağıdaki kodu ekledim:

$defaults = array(
'default-color' => '',
'default-image' => '',
'default-repeat' => 'no-repeat',
'default-position-x' => 'center',
'default-position-y' => 'fixed',
'default-size' => 'fixed',
'default-attachment' => 'scroll',
'wp-head-callback' => '_custom_background_cb',
'admin-head-callback' => '',
'admin-preview-callback' => ''
);
add_theme_support( 'custom-background', $defaults );


ama bu kodlar css le yaratılan dizaynı değiştirdi.tema parallax tipi.yani css çalışmazsa tüm tema çöpe gider.

css burda:

/* parallax */ #home {
background: url() no-repeat center center fixed;
display: table;
height: 100%;
position: relative;
width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}




yani fonksiyonu css ile nasıl şekillendirebilirim? teşekkürler yardımlarınız için