How to SEO Optimize WordPress 2.5 Blog Web Page Title Without Optimal Title Plugin WordPress 2.5のブログSEOの最適化方法をWebページのタイトルに最適なタイトルのプラグインがなければ
Each web pages on Internet will normally has a title that is displayed on the top of all web browsers, and become description or title for the tab on tabbed-browsing support browsers such as Firefox and IE7 or IE8, and also as descriptive text when the browser window is minimized to taskbar.インターネット上になる、通常は、すべてのWebブラウザの上部に表示されている各Webページのタイトル、説明やタイトル、タブ上のタブになる、わかりやすいテキストとしてFirefoxとIE7のかなどの閲覧をサポートしたブラウザIE8 、またときにブラウザのウィンドウのタスクバーに最小化されています。 The webpage title is also important for SEO, acronym for search engine optimization, which intends to promote and improve the ranking of the page and site on search engines. WebページのタイトルもSEOのは、これを促進するため、検索エンジンでは、ページやサイトの掲載順位を向上させる意向を検索エンジン最適化は、頭字語のために重要です。
WordPress blogging system usesワードプレスのブログのシステムを使用 wp_title() template tag wp_title ( )タグのテンプレート to call and displays or returns the title of the page.コールして表示されるかを返すには、ページのタイトル。 Previously, wp_title function is straight forward, and without flexibility, where the separator is always displayed in front of the page title, making bloggers and webmasters unable to put post and page title in front of website name, which believed to be able to boost search engine ranking due to more unique and different titles instead of a standard website title.以前は、ブロガーやウェブマスターwp_title機能やページタイトルのWebサイト名の前には、検索を増やすことができるものと考えられてまっすぐ進むポストすることができない、と柔軟性では、区切り文字は常にページタイトルの前に表示されることなく、ユニークなエンジンのランキングのためにさらに別のタイトルではなく、標準的なWebサイトのタイトル。
As before WordPress v2.5, wp_title tag is pretty much static, a lot of users rely on前に、ワードプレスv2.5 、かなりwp_titleタグ静止しているとして、ユーザーの多くに頼る Optimal Title plugin最適なタイトルのプラグイン to achieve the the optimization to move the post and page title to the front of blog or site title.ブログやサイトのタイトルの前には、投稿とページタイトルを移動するためには、最適化を達成するために。 However, there is no longer a need for any plug-in from WordPress version 2.5 onwards.しかし、もはや任意のプラグインが必要ですが、ワードプレスのバージョン2.5以降。
WordPress 2.5 has added a separator location argument to built-in wp_title template tag that allows users to define whether the separator should be printed before or after the title of the page. WordPress 2.5の構築には区切り位置の引数を追加したテンプレートwp_titleのかどうかは、ユーザーには、区切りの前か後には、ページのタイトルタグを印刷する必要がありますを定義することができます。 As such, bloggers who upgrade to WordPress 2.5 or new WordPress 2.5 installation can directly use the WordPress built-in wp_title function instead of additional plugin to optimize the blog pages title.このように、ブロガーは、ワードプレス2.5へのインストールを直接追加したり、新しいワードプレス2.5プラグインではなく、ブログのページタイトルを最適化するために、ワードプレスの組み込み関数で使用することができますwp_titleアップグレードします。
Typically, most WordPress theme design will have the following line of code to display a page title:通常、ほとんどのワードプレステーマのデザインコードをページタイトルを表示するには、以下の行を持ちます:
<title><?php bloginfo('name'); ?> <?php wp_title(); ?></title> はPHP <title><?php bloginfo('name'); ?> <?php wp_title(); ?></title>
The code will print blog name first, followed by wp_title which firstly print a seperator, which by default is » (») symbol, and then continue with post title or page title.最初のブログのコード名は、第一には、デフォルトで» ( » )象徴し、記事のタイトルやページタイトルを続行されているセパレータを、印刷wp_title続いて印刷されます。 To change the separator location to the right or behind the post title so that the sequence of blog title and post title can be changed, simply change the code to the following:右の区切り位置を変更するか、記事のタイトルの後ろにはタイトルと記事のタイトルをブログのシーケンスを変更することができますは、単純に次のように、コードを変更する:
<title><?php wp_title(' »', true, 'right'); ?> <?php bloginfo('name'); ?></title> はPHP <title><?php wp_title(' »', true, 'right'); ?> <?php bloginfo('name'); ?></title>
The values for first two parameters are default, which can be omitted, but some users reportedly that the WordPress will return 500 Internet Server Error when first 2 values are removed.最初の2つのパラメータの値を省略することができますが、デフォルトですが、ワードプレスの報道によると、一部のユーザーが削除される最初の2つの値を500インターネットサーバーエラーが返されます。 Beside, some bloggers may want to beautify the title with space or change the separator, so it's recommended to type in the value want to use.横に、一部のブロガーのスペースで、タイトルを美化したり、区切りを変更するので、値を入力する必要がありますを使用することをお勧めします。 Note the the last argument determine the location of the separator, which must have the value of 'right' for the separator to be appended after the post title.は、最後の引数は、区切り文字には'の区切りの後に追加される記事のタイトルを右]の値を持つ必要がある場所は、決定に注意してください。 Any other value will have the separator placed in front of (to the left of) the post title.他の値の)は、記事のタイトルを左には、区切りの前に(に配置されます。
Usage and Parameters for wp_title() since WordPress 2.5 利用方法とのパラメータのwp_titleワードプレス2.5 ( )以来
<?php wp_title('sep', echo, 'seplocation'); ?> エコー <?php wp_title('sep', echo, 'seplocation'); ?>
sep (string): Text to display before or after of the post title (ie the separator). 09 (文字列) :テキストの前またはその記事のタイトルの後の( )は、すなわちセパレータが表示されます。 By default (if sep is blank) then the » (») symbol will be placed before or after (specified by the seplocation) the post title.デフォルトでは( 09月)して、 » ( » )のシンボルの前または後に配置されます( seplocationによる)は、指定された記事のタイトルは空白です。
echo (boolean): Echo the title (True) or return the title for use as a PHP string (False). (ブール値) :エコーのタイトル(真)やPHPの文字列として使用する(偽)のタイトルを返すエコー。 Valid values is either 1 (True) which is also default value and 0 (False).有効な値は1 (真)にも、デフォルト値は0 (偽) 。
seplocation (string): Defines the location of where the sep string prints in relation to the title of the post. seplocation (文字列) :指定の場所は、記事のタイトルとの関連では、 09文字列が印刷されます。 For all values except 'right', the sep value is placed in front of (to the left of) the post title. '以外のすべての値については右'は、 09月の値の前に(に配置されているの左側)は、記事のタイトル。 If the value of seplocation is 'right' then the sep string will be appended after the post title. seplocation場合の値は'右'して、 09文字列は、記事のタイトルが追加されます。
IMPORTANT : You're reading a machine translated page which is provided "as is" without warranty. 重要 :あなたはマシンとして"保証なしには"提供されるページを翻訳読んでいる。 Unlike human translation, machine translation does not understand the grammar, semantics, syntax, idioms of natural language, thus often produce inaccurate and low quality text which is misleading and incomprehensible.人間の翻訳とは違って、機械翻訳は、不正確なため、多くの場合、低品質のテキストは、誤解を招くと理解を生産、文法、意味論、構文、自然言語のイディオムを理解していません。 Thus, please refer toしたがって、下記を参照してください original English articleオリジナルの英語記事 when in doubt.疑わしいとき。
Related Articles関連記事
- Make WordPress Blog More Secure Using Secret Keyワードプレスのブログにする秘密鍵を使ってほかのセキュア
- How to Fetch and Show RSS Feeds on WordPress Blog (Atom/RSS Aggregator Plugins)どのように(原子/ RSSアグリゲータプラグイン)の取得およびワードプレスのブログのRSSフィードを表示する
- Media Buttons Disabler Plugin to Remove “Add Media” Icons in WordPress 2.5メディアボタンDisablerプラグイン" WordPress 2.5のメディアを追加"アイコンを削除する
- Disable WordPress 2.5 Flash Image/Video/Media Uploader with Pluginワードプレス2.5を無効にフラッシュ画像/ビデオ/メディアのアップローダプラグイン
- Notification Emails Not Send After Comment Approval in WordPress 2.5 and 2.5.1コメント通知されていない電子メール、ワードプレス2.5と2.5.1の承認後に送信
- WordPress 2.5.1 Released for Downloadワードプレス2.5.1のダウンロード用にリリース
- WordPress 2.5 Released for Free Download WordPress 2.5の無料ダウンロード用にリリース
- Workaround to Override WordPress Shortcode and Display the [] Brackets Tags回避策を上書きすると表示するには、ワードプレスのショート[ ]ブラケットタグ
- PHP Fatal Error on Call to Add_Query_Var in Taxonomy.php After Upgrading to WordPress 2.5 RC2 PHPの致命的なエラーAdd_Query_Varに請求をTaxonomy.phpのRC2が、ワードプレス2.5へのアップグレード後
- WordPress 2.5 RC2 Released for Downloadワードプレス2.5 RC2がダウンロード用にリリース










































February 1st, 2009 06:25 2009年2月1日06:25
Привет, статья интересная и я тоже процитирую у себя в блоге Привет 、 статья интересная и я тоже процитирую у себя в блоге
January 28th, 2009 13:45 2007年1月、第28回2009年13:45
Thanks for this tip, I found it very helpful.このチップのおかげで、私は非常に役立つという。
December 16th, 2008 12:25 12月16日2008 12:25
Hi,やあ、
I recently uninstalled ALL in One SEO pack, and found your site.私も最近、 SEOのパックでは、すべてアンインストールして、サイトを見つけた。 Thanks for the tips!のヒントをお寄せいただきありがとうございます!
October 23rd, 2008 09:56 2008年10月23日09:56
I'ma new commer on wordpress, I still confused on how to make my home page title like this:ワードプレスの新しい経営者に私は、私はまだこのように私のホームページのタイトルにするために混乱:
automatically!自動的に!
LaptopGarden.Net - Notebook, Laptop, UMPC, Tablet PC, Peripheral Latest News. LaptopGarden.Net -ノートブック、ラップトップ、のUMPC 、タブレットPC 、周辺機器最新ニュース。 and Reviewsと評価
What should code I entered on blog?何をブログに入力したコードがいいですか?
thanks!ありがとう!
May 6th, 2008 19:17 2008年5月6日19:17
I use the all in one seo add on to seo optimize wordpress.私は、すべて1つのワードプレスを最適化ソソに追加使用しています。
http://wordpress.org/extend/plugins/all-in-one-seo-pack/ http://wordpress.org/extend/plugins/all-in-one-seo-pack/
April 5th, 2008 02:05 2007年4月、第5回2008年02:05
[...] reading How to SEO Optimize WordPress 2.5 Blog Web Page Title Without Optimal Title Plugin at Tip and [...] [...] WordPress 2.5のブログ読んでどのようにSEOの最適化に最適なタイトルのWebページタイトルのプラグインがなければヒントと[...]
March 30th, 2008 18:31 2007年3月、 30日2008 18:31
[...] How to SEO Optimize WordPress 2.5 Blog Web Page Title Without Optimal Title Plugin. [...]する方法ワードプレス2.5のブログSEOの最適化、最適なタイトルプラグインなしでWebページのタイトル。 [...] [...]