¿Hacer el encabezado del tema Twenty Ten menos alto?
2 respuestas
- votos
-
- 2010-08-17
Para queelencabezado deltema Twenty Ten seamenos alto (es decir,una altura conmenospíxeles) coloqueeste códigoen laparteinferior del archivo "
functions.php
" de sutema (asegúrese de cambiarelnúmero180
a la altura que desee):<?php add_action('twentyten_header_image_height','yoursite_header_image_height'); function yoursite_header_image_height($height) { return 180; // Modify this to whatever pixel height you want. }
Luego,deberáir a " Apariencia> Encabezado "en su consola de administración y cargar sunuevaimagenmáspequeña (aquíestá la URL deesapágina de administración):
http://example.com/wp-admin/themes .php?page=encabezadopersonalizado
Y asíes como se veesapágina de administración:
Tambiénpuede considerar realizar susmodificacionesen un " Tema secundario " (si aúnno lo ha hecho). Aquíestá un artículo (quees demasiado complicado)peroen realidadestan simple como crear un directorioen su servidor weben el subdirectorio"
/wp-content/themes/
"( Lo llamaría "/wp-content/themes/yoursite/
") y crearía un "style.css
"en ese directorio con lo siguiente:/* Theme Name: Your Child Theme Name Description: Theme for your-site.com Author: Your Name Version: 1.0 Template: twentyten */ @import url("../twentyten/style.css");
Luegopuede crear unnuevo archivo "
functions.php
" yponerel código PHP anterioren élen lugar demodificar los archivosen el directorio deltema TwentyTen ytener que lidiar con hacerlonuevamente cuando Twenty Tentiene una actualización de seguridad.To make the header on the Twenty Ten theme less tall (i.e. a height with fewer pixels) put this code at the bottom of your theme's "
functions.php
" file (being sure to change the number180
to whatever height you want):<?php add_action('twentyten_header_image_height','yoursite_header_image_height'); function yoursite_header_image_height($height) { return 180; // Modify this to whatever pixel height you want. }
Then you'll need to go to "Appearance > Header" in your admin console and upload your new smaller image (here's the URL to that admin page):
And here's what that admin page looks like:
You might also consider making your modifications on a "Child Theme" (if you have not already.) Here's an article (that is overly complicated) but it's really as simple as just creating a directory on your web server under the "
/wp-content/themes/
" subdirectory (I'd call it "/wp-content/themes/yoursite/
") and creating a "style.css
" in that directory with the following:/* Theme Name: Your Child Theme Name Description: Theme for your-site.com Author: Your Name Version: 1.0 Template: twentyten */ @import url("../twentyten/style.css");
Then you can create a new "
functions.php
" file and put the above PHP code in it rather than modifying the files in the directory of the TwentyTen theme and having to deal with doing it again it when Twenty Ten has a security update. -
- 2011-03-10
Hicetrampa y usé cssen el archivo style.css Elmétodo de Mikeesmejor si desea que los usuarioseditenelencabezado. Desactivéesafunciónpor completo.
I cheated and used css in the style.css file Mike's method is better if you want let users edit the header. I turned that feature off altogether.
Lapreguntaes ¿Cómopuedo hacer queelencabezado deltema Twenty Ten seamenos alto? Esapregunta se hizoen elgrupo de WordPress de LinkedIn queestá ocultapara losmotores debúsqueda,así quepenséen copiarmi respuesta aquí.
También lo he convertidoen un wiki de la comunidadpara quenome pase reputación.