Twenty Ten 테마의 헤더를 덜 키우는가?
2 대답
- 투표
-
- 2010-08-17
Twenty Ten 테마의 헤더 높이를 줄이려면 (예 : 픽셀이 더 적은 높이)이 코드를 테마의 "
functions.php
"파일 하단에 넣으십시오 (반드시 원하는 높이로 숫자180
) :& lt;?php add_action ( 'twentyten_header_image_height','yoursite_header_image_height'); function yoursite_header_image_height ($ height) { 반환 180;//원하는 픽셀 높이로 수정합니다. }
그런 다음 관리 콘솔의 " 모양> 헤더 "로 이동하여 새 작은 이미지를 업로드해야합니다 (여기에 해당 관리 페이지의 URL이 있습니다).
<인용구>http://example.com/wp-admin/themes .php?page=custom-header
관리 페이지는 다음과 같습니다.
' 하위 테마 '를 수정하는 것도 고려할 수 있습니다 (아직 변경하지 않은 경우). 다음은 기사 (너무 복잡함)이지만 웹 서버에서"
<사전> <코드> /* 테마 이름 : 귀하의 자녀 테마 이름 설명 : your-site.com의 테마 저자 : 귀하의 이름 버전 : 1.0 템플릿 : 스물 텐 */ @import url ( "../twentyten/style.css");/wp-content/themes/
"하위 디렉토리 아래에 디렉토리를 만드는 것만 큼 간단합니다 ( 나는 그것을 "/wp-content/themes/yoursite/
")라고 부르고 그 디렉토리에 다음과 같이 "style.css
"를 만듭니다.그런 다음 TwentyTen 테마의 디렉토리에있는 파일을 수정하고 다시 처리해야하는 대신 새 "
functions.php
"파일을 만들고 위의 PHP 코드를 넣을 수 있습니다. Twenty Ten에 보안 업데이트가있을 때입니다.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. -
질문은 Twenty Ten 테마의 헤더를 어떻게 작게 만들 수 있습니까? 검색 엔진에서 숨겨져있는 LinkedIn WordPress 그룹에서 질문을 받았기 때문에 복사 할 것이라고 생각했습니다.여기에 대한 나의 대답.
또한 커뮤니티 위키로 만들었 기 때문에 평판이 나지 않습니다.