Ver Mensaje Individual
  #10 (permalink)  
Antiguo 16/01/2012, 04:56
Avatar de hasdpk
hasdpk
 
Fecha de Ingreso: agosto-2011
Ubicación: $spain->city( 'Arucas' );
Mensajes: 1.800
Antigüedad: 12 años, 8 meses
Puntos: 297
Respuesta: Necesito un codigo facil y efectivo para cambiar el fondo al recargar la w

Código PHP:
Ver original
  1. add_action('wp_print_styles', function() {
  2.  
  3.     #Carpeta donde se encuentra los fondos (/wp-content/themes/[...]).
  4.     $directorio = '/images/background/';
  5.    
  6.     #---- No editar  ---------------------------------------------------------
  7.        
  8.     $fondos = scandir(get_stylesheet_directory() . $directorio);
  9.     $fondos = array_slice($fondos, 2);
  10.     $imagen = $fondos[array_rand($fondos)];
  11.    
  12.     $path = get_bloginfo('template_directory') . $directorio;  
  13.     echo "<style type='text/css'>body { background: url('$path$imagen') top center no-repeat; }</style>";
  14.  
  15. });