Buenos días :)
Estoy haciendo un blog en wordpress, y necesitaría cambiar la imagen de fondo de mi blog.
He leido que debo de hacerlo mediante la función add_theme_support() dentro de functions.php de mi theme.
Lo que he leido es esto, pero luego no se como colocarlo en mi php:
Custom Backgrounds
Languages: English • 日本語 • (Add your language)
Custom Backgrounds is a theme feature that provides for customization of the background color and image.
See also Appearance Background Screen.
Adding Theme Support
Since Version 3.4, themes need to use add_theme_support() in the functions.php file to supports custom backgrounds, like so:
add_theme_support( 'custom-background' );
Note that you can add default arguments using:
$defaults = array(
'default-color' => '',
'default-image' => '',
'wp-head-callback' => '_custom_background_cb',
'admin-head-callback' => '',
'admin-preview-callback' => ''
);
add_theme_support( 'custom-background', $defaults );
Example
An example using default '#000000' background color with 'background.jpg' background image:
$args = array(
'default-color' => '000000',
'default-image' => get_template_directory_uri() . '/images/background.jpg',
);
add_theme_support( 'custom-background', $args );
Y en mi php , lo coloco asi y no funciona???? :
$args = array(
'default-color' => '000000',
'default-image' => get_template_directory_uri() . '/images/fondo.jpg'
);
add_theme_support( 'custom-background', $args );
no se si es que estoy omitiendo algo, pues no tengo conocimientos de php.
Alguien que haya cambiado el fondo de wordpress con esto??
Muchas gracias de antemano.