Subscribe to RSS feed RSSフィードを購読 orまたは follow me私に従う on Twitter? Twitterで?
Every blogger has heard of the term SEO.すべてのブロガーが長期的SEOの聞いたことがある。 SEO blog category is among the fastest growing – you have to look no further than the number of authority blogs that cover the topic extensively. SEOブログカテゴリには、急成長中です-あなたはさらに以上の権限を、ブログの数は、広範囲のトピックをカバー調べる必要がある。 Having some SEO knowledge is essential for every blogger to improve his luck with search engines.いくつかのSEOの知識があれば、すべてのブロガーのための検索エンジンで自分の運を向上させるために不可欠です。 More organic traffic is important for blogs, especially those monetized by pay-per-click schemes.もっとオーガニック検索のトラフィックのブログには、特にこれらの支払いで収入を得ることが重要ですクリック単価スキーム。
SEO has two sides – things you do to your blog theme, and things you observe while writing(which are rather difficult to change, when there are several posts).書き込み中に(これはかなり変更することが困難なSEOの場合、いくつかの投稿はありません)2つの側面-あなたのブログのテーマに行うことは、物事を観察しています。 Things to observe while writing are rather tedious, like checking the keyword density, duplicate content, optimizing titles etc. On the other hand, things to do on your theme are easier, and they need to be done only once(unlike while writing).一方で手間がかかりますし、重複したコンテンツは、他の一方のタイトルなどを最適化するキーワードの密度をチェックするように書い物事をテーマにしたかを容易に観察し、彼らは1回だけ(違って行われる必要が書き込み中)。 Below, you will find some easy tips to improve your blog's SEO, by meddling with your theme files(this post assumes that you have a basic understanding of the WordPress templating system, else refer to以下では、あなたのテーマファイルと干渉し(この記事の前提とすると、ワードプレスのテンプレートシステムの基本的な理解が、他のブログのSEOを改善するいくつかの簡単なヒントを見つけるを参照してください help filesヘルプファイル ). )。
- Optimize your titles : The title is the single most important tag in your page. 最適化してタイトル :タイトルはあなたのページでは、単一の最も重要なタグです。 Make sure that you use them wisely.は、賢明にそれらを使用することを確認します。 WordPress uses the same sentence for heading and title tags.ワードプレスとタイトル、見出しタグは、同じ文を使用します。 For better appeal to search engine traffic, useより魅力のエンジンからのトラフィックを使用するを検索する All In One SEO 1つの全てのSEOのあり plugin to rewrite your titles, such that the title is eye-catching.プラグインは、お客様の書籍のリライトには、タイトルの目を引くような。
- Optimize your headers : The post-title tag (usually
<h2>) is important. 最適化してヘッダー :ポストタイトルタグ(通常<h2>が重要です。 Make sure that you put keywords in your header.確信している場合、ヘッダーにキーワードを入れてください。 Also, change the header tag toh1in single pages (this is debated).またh11つのページ(この内には、ヘッダーのタグ変更議論です)。 - Change your blog title : Most themes use
h1for blog titles, while relegating post titles toh2.中にh2を記事のタイトル追いやってあなたのブログのタイトル :ほとんどのテーマを変更するブログのタイトルはh1使用。 From an SEO view, this is suicidal. SEOの観点からすると、この自殺です。You should put your most important header in
h1.あなたがh1での最も重要なヘッダを置いてください。Now, ask yourselves: is your blog title more important than your post title?今、自分で質問:あなたのブログのタイトルの詳細を記事のタイトルも重要ですか? No. So, make sure that you use
h3/h4tag for header.ナンバーだから、その場合ヘッダh3/h4タグを使用することを確認します。 Changing the tag is easy – just replace the tags in the theme files.タグの変更は簡単です-ちょうどテーマファイル内のタグに置き換えてください。 Open upstyle.cssand replace theh1withh3/h4(you are on your own with this, so do this only if you really know what you're doing).オープンstyle.css開くとh3/h4と(自分はこのため、このかがh1に置き換える場合にのみ、あなたが本当に何をしている)知っている。ADVERTISEMENT 広告 - Use h4/h5 tags : Use h4/h5 tags as sub-headings, and use them to demarcate the different parts of your post. 使用してh4/h5タグ :使用してサブとしてh4/h5タグを見出し、およびあなたのポストの異なる部分を区別するために使用します。 Use CSS to beautify them. CSSを使用して美化する。
- Change the sidebar headings : Most themes use
h2for sidebar headings. サイドバーの見出しを変更する :ほとんどのテーマにサイドバー等のh2を使用する。 This is another of those weak-points of the default templating system.これは別のデフォルトのテンプレートシステムは、これらの弱いポイントの一つです。 Change the sidebar headings toh4/h5.h4/h5には、サイドバー等を変更する。If you use widgeting system, this is a bit complicated.場合は、システムwidgeting使用すると、これは少し複雑です。 You may have to use
functions.phpto overwrite the default widget system.あなたfunctions.phpデフォルトのウィジェットを、システムの上書きを使用する必要があります。 - Modify title format : The default title format for WordPress is Blog name ? タイトル書式を変更する :ワードプレスのデフォルトのタイトルの形式名のブログですか? Post name . ポストの名前 。 Modify this to Post name ? ポストの名前には、この変更? Blog name for better results.より良い結果のためのブログの名前 。 Replace your title tag with this code(this is what I use):このコードを使用して、タイトルタグに置き換えます(これは何を使用します):
<title>
<?php if ( is_paged() ) : ?><?php $paged = '— Page '.$paged; ?><?php endif; ?>
<?php if ( is_404() ) : ?>Page Not Found — <?php bloginfo('name'); ?>
<?php elseif ( is_home() && !is_paged() ) : ?><?php bloginfo('name'); ?>
<?php elseif ( is_search() ) : ?>Search Result : <?php echo wp_specialchars(stripslashes($_GET['s']), true); ?> <?php echo $paged; ?>
<?php elseif ( is_attachment() ) : ?>Attachment : <?php echo trim(wp_title('—', false)); ?>
<?php elseif ( is_single() ) : ?><?php echo trim(wp_title('', false)); ?>
<?php elseif ( is_category() ) : ?><?php echo trim(wp_title('', false)); ?> category <?php echo $paged; ?>
<?php elseif ( is_author() ) : ?>Author Archive : <?php echo trim(wp_title('', false)); ?> <?php echo $paged; ?>
<?php elseif ( is_archive() ) : ?>Archive : <?php echo trim(wp_title('', false)); ?> <?php echo $paged; ?>
<?php elseif ( is_paged() ) : ?><?php bloginfo('name'); ?> <?php echo $paged; ?>
<?php else : ?>
<?php echo trim(wp_title('', false)); ?> — <?php bloginfo('name'); ?>
<?php endif; ?>
</title> - Serve Category names in
h2: Category names in category pages is invaluable, as they are related to the content.としては、コンテンツに関連しているh2のカテゴリー名をサーブ :カテゴリページにカテゴリ名、非常に貴重です。 Use h2 tag to emphasize the category name.使用して水素タグは、カテゴリ名を強調した。 - Replace other h2 : Replace other instances of h2, where it does not make sense. 置換 、 他の水素 :H2の他のインスタンスと、どこに意味をなさないに置き換えます。 For example, the Comments heading is usually placed in h2/h3, but it does not merit such an important position.たとえば、コメントの見出しは通常h2/h3に配置されますが、そのような重要な地位のメリットはありません。 Change it to something more sensible, like h4/h5. h4/h5のようなものより賢明にそれを変更します。
- Use the footer's real estate : Footer is usually the last part crawled by the search engine. フッターの不動産を使用 :フッターは、通常、最後の部分は検索エンジンでクロールされます。 To make a lasting impression (永続的な印象を与えるには(
), include a very short description of your blog in the footer(see this blog's footer). )は、フッターにあなたのブログの非常に短い説明をinclude()は、このブログのフッターを参照してください。
That was a long list, but trust me – it is worth the effort.それは長いリストだったが、私を信じて-それは努力の価値がある。 Hope you had a great time reading this!希望する素晴らしい時間をこれを読んでいた!
Related reading関連読書
- Why new blogs should not display adsなぜ新しいブログに広告を表示しないでください
- Greasemonkey script to improve Twitter functionality GreasemonkeyスクリプトTwitter機能を改善する
- 23 Firefox optimization/power tips and shortcuts 23 Firefoxの最適化/消費電力のヒントおよびショートカット
- I've switched to Ubuntu Linux – post your tips here私のUbuntu Linuxに切り替えている-ここにあなたのヒントポスト
The idea of using h1 tags for your blog posts is absolutely brilliant and I haven't heard that ever before.ブログの投稿のH1タグを使用しての考え方は確実に華麗であり、私は今まで聞いたことがない。 It makes perfect sense though, search engines would obviously put more weight on information that seems to be more important (hence h1 being “1″ and h2 being “2″).それも、検索エンジンは明らかに情報には、さらに(それゆえ、H1の"1"をされるとH2されて"2")が重要と思われる以上体重をかけると完璧な意味があります。
@Michael: Thanks, and that is the way I have done it too. @マイケル:おかげで、私もそれ実行している方法です。 H1 for titles is ludicrous, atleast on the post pages.タイトルは、H1は、投稿ページに少なくともばかげている。
Great tips.偉大なヒントを。 I'm always looking for SEO tips.私は常にSEOのヒントを探しています。 And thanks a lot for the title format code.とのタイトルの書式コードのおかげで多くの。
@Haris: Thanks, and no prob @ハリス:ありがとう、およびno prob
If you have any problem with any of these steps, feel free to ask.もし、これらの手順を実行しますと、何の問題もお願い自由に。
These are some great SEO tips I havent heard before.これらは私が前に聞いたhaventいくつかの素晴らしいSEOのヒントです。
And to think, just earlier this week, I finally learned how to tinker with CSS files to do things like change the header appearance…now I can do it and have it be SEO-optimized at the same time!そして、ちょうど今週考えて、私は最終的にどのようにCSSをいじくり回すことを学んだようなものは、ヘッダーの外観...今私はそれを行うことができますし、SEOのことが、同じ時間で最適化された変更を行うにファイルを!
Thanks a million!おかげで880万!
@Ravi: Thanks for the compliments. @ラヴィ:褒めいただきありがとうございます。 Hope you find this useful and optimize your blog well.ホープ、この有用なだけでなく、ブログの最適化を見つける。
Very Importants SEO Tips.非常にImportants SEOのヒント。
I use “All in ONE SEO Package” plugin.私は"すべてのワンのSEOパッケージ"プラグインを使用します。 Where I can customize Title, Keyword and Description Tags of each post individually.どこで、個別タイトル、キーワード、および説明タグごとにポストをカスタマイズすることができます。
@Linu: Thanks. @ Linu:ありがとう。 Btw, All in One SEO can help, but use it for title only – don't waste your time on the others, they are not valued by search engines anymore.ところで、1つのSEOの全てでは、支援することができますが、タイトルだけを使用する-他人にあなたの時間を無駄にしないので、検索エンジンが高く評価されていませんもう。
Not to sound rude, but having more than 1 h1 tag on the index page does not make for good SEO IMHO.しない失礼が、音には、インデックスページに複数の1 h1タグを持つ優れたSEO IMHOを確認していません。
@Karthik: Ah, I should have perfected my own blog before doling out advice @作者:Karthik:ああ、私のアドバイスを渡せ前に、自分のブログを完成する必要があります
But seriously, this theme was built before I learned SEO, and it shows!前に私はSEOを学んだしかし、真剣に、このテーマに構築され、それを示しています! h1 for description is what I am looking at, in my next theme rebuild. H1の説明については、私で、私の次のテーマを再構築するか楽しみです。 That's most sensible, since my tagline is sharp.以来、私のキャッチフレーズが鮮明であること、最も賢明だ。
And btw, I hope you like my advice of using h1 for post titles in single pages – I said it specifically because I knew otherwise this problem would crop up.そして、ところで、私は1つのページ内の記事のタイトルをH1のを使用しての私のアドバイスのように願って-私はそれを具体的には私はそれ以外に作物がこの問題を知っている。
Edit(Feb 28 2007) : Just found out that redesign of DailyBlogTips.com uses h1 for post-titles even on index. 編集(2007年2月28日):ちょうどDailyBlogTips.comのは、デザインを知った後の中間を使用して、インデックスでもタイトルを。 Daniel(author) is an SEO expert, and I am sure he would not have done it if it weren't useful.ダニエル(著者)はSEOの専門家であるとすればその有用されていない彼はそれを行っていなかったと確信しています。 Guess I win, Karthik推測私は、作者:Karthik勝つ
Do a search for 'Tech Blog' in Google. 'を検索しますハイテクブログ'09インチ Look at the search result.検索結果を見てください。 After the Title, The first sentence is from that site's Meta Description Tag.タイトルの後、最初の文はそのサイトのメタ商品タグからです。 Description and Keywords tags are also very very important.商品とキーワードのタグも、非常に非常に重要です。
@Linu: Sure, Google and other search engines pull in the description from meta description tags. @ Linu:確かに、Googleなどの検索エンジンをメタ説明タグからの説明に引き出します。 However, that does not mean that it carries importance.しかし、それは、重要性を運ぶことを意味していません。 All of SEO experts agree that while Google doesn't give a damn about those old system of meta, Yahoo values them – which is why I use description tags too.全てのSEOの専門家のことは、Googleのメタこれらの古いシステムについても痒くもないが同意すると、ヤフーは値-それで私は、あまりにも説明タグを使用しています。
You really should update your SEO knowledge – your current knowledge is from 4-5 years ago.本当にあなたのSEOの知識をアップデートしてください-あなたの現在の知識4-5年前からです。 Modern SEO places a lot of importance on user interactivity, semantic markup etc.近代的なSEOのは、セマンティックなマークアップなどをユーザーが対話重視の多くの場所
Please go to喜ばせるために行く http://www.webmasterworld.com/google/3134380.htm http://www.webmasterworld.com/google/3134380.htm and scroll down to read two of tedster's replies.下にスクロール2 tedsterの回答を読んでください。 For the record, tedster is the moderator there.記録については、tedsterモデレーターそこにある。
Also,同様に、 http://www.cornwallseo.com/search/index.php/2007/02/16/secrets-of-the-h1-tag-revealed/ http://www.cornwallseo.com/search/index.php/2007/02/16/secrets-of-the-h1-tag-revealed/ where the author seems to support your opinion, but accepts in the comments that its dependent on the template and not on the core code and that he was perhaps mistaken.ここでは、著者ご意見をサポートするように見えますが、コメント欄では、その元とコアコードではなく、テンプレートに依存して受け入れると、彼はおそらく間違っていました。
And, please do take the time to run your blog or the DailyBlogTips blog throughと、してください。を通して、あなたのブログやDailyBlogTipsブログを実行するには時間がかかるか http://www.websitegrader.com http://www.websitegrader.com
Lastly, its never good to form an opinion based on a single person's perspective.最後に、その意見を一人の視点に基づいてフォームが良いことはない。 Nobody is an expert, and Daniel could just as well have missed the point.誰も専門家である、ダニエルと同じようなポイントを逃していることができます。 I could well be wrong here for all you know, but to the best of my knowledge, its *not* good SEO practice to have more than one h1 tag in a page.私もここですべてを知っているのが、私の知る限りでは間違っている可能性が、その*ありません*良質なSEOの実践は、ページ内に複数のh1タグがします。 You run the risk of getting penalized for “trying to game Google”.あなたが"ゲームをしようとするためのペナルティーを得ることのリスクを実行するGoogleの"。 You and I may know that's not true and you were just trying to add some more value to the page, but Google needn't necessarily hear you out.あなたと私は真実ではないと知っている可能性がありますし、あなただけのページにいくつかのより多くの価値を追加しようとしていたが、Googleは、必ずしもあなたの意見を聞いていない必要があります。
When I'm given a choice between two controversial sides, I tend to take the safer side.ときに私は2つの議論の双方の選択肢を与え、私はより安全な側につくことが多い。 Especially when a guy like Chris Pearson thinks that there shouldn't be more than one h1 tag (He designed the theme I'm using and he's one of the best WP theme designers and particularly known for his SEO oriented designs).特に、クリスピアソン氏のような男は2つ以上h1タグが(彼は私が使っているテーマに設計されてし、彼は最高のWPテーマのデザイナー、特に彼のSEO指向の設計に知られている)と考えている。
The bottomline is that I tried to voice my opinion, you did yours.ボトムは、私の意見を表明しようとした場合は、あなたでした。 Honestly, I don't think anyone “won” here.正直なところ、私は考えていない人""ここで獲得した。
Either way, good luck!いずれにせよ、幸運を!
@Karthik: Hmm…I agree that you have got the point. @作者:Karthik:うーん... ...私はあなたのポイントを持っているものとします。 And now I realize Daniel maybe running the risk too.そして今、私のダニエルすぎるかもしれないリスクを実行して実現する。 And yes, I did read about Chris P's stuff sometime back, which got me excited about SEO.はい、私について読んでいたクリスPのものいつかバックは、私SEOについて興奮して。 And he's the reason why I use H1 for description (also what I said in my previous reply above) too.彼はなぜH1の説明に使用する理由は(また、私が上記の私の以前の回答の)が大きすぎると述べた。
And I switched to H2 when you alerted me – I owe you one.と私はH2にするときに私に警告を切り替え-私はあなた1借りている。 And, since you feel like it is not “winning”, I don't feel like that either.以来、それを感じそして、""勝利ではない、私のように感じていないのいずれか。
Now this is a real dodge fight本当の戦いをかわす今これは
(thanks for those links too)これらのリンクのため(おかげでもある)
Sure, np, glad you took it well, and you perhaps did the right thing, no point taking the risk to send Google a wrong signal!確かに、NPは、あなたも撮りました喜んで、あなたは、おそらく正しいことをしなかったの時点でGoogleに誤った信号を送信するためにリスクを冒して!
No hard feelings!恨みっこなし!
hey i am new to blog world so please help meちょっと私は助けてください世界のブログに新しい午前
will copying and pasting content from one website to my own blog blacklist it from the search engines as told hereコピーして1つのウェブサイトからの私のブログに独自の検索エンジンからのブラックリストにコンテンツを貼り付けるにはここを言われる
@Karthik: Yes, copy-pasting content will blacklist your blog from search engines, and people will also hate it. @作者:Karthik:はい、コピー&ペーストのコンテンツを検索エンジンからあなたのブログのブラックリストになり、人も嫌いです。 I suggest you write original articles, even if it is 1 per week (because as a reader, I'd rather have 1 original post rather than 10 duplicate posts).私はあなたオリジナルの記事を書く場合でも、1週間あたりのリーダー(これとが示唆された、私はむしろむしろ10の重複記事より)1オリジナルのポストしてもらった。 And do not believe in the myth created by probloggers that not posting for some days will make your readership fall.そして、神話のプロブロガー達は、いくつかの日に、読者秋になるのではないが作成されたとは思わない。 It is more about quality than quantity, for new bloggers.これは量より質の詳細については、新たなブロガーのため。