20のテーマのヘッダーの高さを低くしますか?
2 回答
- 投票
-
- 2010-08-17
Twenty Tenテーマのヘッダーの高さを低くする(つまり、高さをピクセル数に減らす)には、このコードをテーマの「
functions.php
」ファイルの下部に配置します(必ず変更してください).番号180
を任意の高さに設定):<?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. }
次に、管理コンソールの[外観>ヘッダー]に移動して、新しい小さい画像をアップロードする必要があります(この管理ページへのURLは次のとおりです).
その管理ページは次のようになります:
「子テーマ」を変更することも検討してください(まだ行っていない場合).
記事(非常に複雑です)が、Webサーバーの「 /wp-content/themes/
」サブディレクトリの下にディレクトリを作成するのと同じくらい簡単です(これを「/wp-content/themes/yoursite/
」)と呼び、そのディレクトリに次のように「style.css
」を作成します./* 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");
次に、TwentyTenテーマのディレクトリ内のファイルを変更して再度処理するのではなく、新しい「
functions.php
」ファイルを作成し、その中に上記のPHPコードを配置できます. TwentyTenにセキュリティアップデートがある場合.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グループで尋ねられたので、コピーしたいと思いました.ここへの私の答え.
コミュニティウィキにもしたので、評判が良くありません.