Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPBカップ
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

WordPressのロゴと商標に関する4つの “知っておくべき “ルール(解説)

編集メモ: WPBeginner のパートナーリンクから手数料を得ています。手数料は編集者の意見や評価に影響を与えません。編集プロセスについて詳しく知る。

WordPressのユーザーとして、またこのプラットフォームについて記事を書いているブロガーとして、WordPressのロゴと商標について覚えておくべきルールがいくつかあります。

WordPressはオープンソースのソフトウェアですが、著作権法や商標法で保護されています。多くの初心者はそれらを知らず、ガイドラインに違反する可能性があります。

この解説では、WordPressのロゴと商標を使用する際に守らなければならないルールについて説明します。また、なぜそれが重要なのか、WordPressライセンスの下での権利についてもお話します。

How to use WordPress logo and trademark

GPLを理解する – WordPressライセンス

まずは基本から。

WordPressサイトには2つのタイプがあります。

まず、ホスティングサービスであるWordPress.comがあり、次に人気のあるWordPress.orgがあり、インストール型のWordPressとも呼ばれる。

WordPressと言えば、WordPress.orgのことを指す人がほとんどです。さらに詳しく知りたい方は、WordPress.comとWordPress.orgの違いについてのガイドをご覧ください。

WordPressはオープンソースのGPLライセンスでリリースされています。そのため、WordPressはフリーソフトウェアです。

しかし、ここでのfreeは自由という意味で使われているのであって、無料のコーヒーという意味ではない。

このライセンスは、誰でもWordPressのコードをダウンロード、コピー、使用、研究、修正する自由を与えます。

WordPress bill of rights

要約すると、WordPressの権利章典はこれら4つの自由を保証している:

  1. どのような目的でもプログラムを実行するには
  2. プログラムがどのように機能するかを研究し、自分の望むようにプログラムを変更すること。
  3. 再分配するには
  4. あなたが改変したバージョンのコピーを他の人に配布する自由。

ソフトウェア自体は無料で使用できるが、WordPressをインストールしてサイトを作成するには、ドメイン名とウェブホスティングアカウントを購入する必要がある。

さらに詳しく知りたい方は、WordPressがなぜ無料なのか、そして費用はいくらかかるのかを説明した投稿をご覧ください。

フリーソフトウェアと著作権について、初心者の間には誤解がある。ソフトウェアのコードをどのように使うかは自由ですが、ソフトウェア自体は著作権法や商標法によって保護されています。

どういう意味ですか?

基本的に、WordPressのコードをコピーして新しいソフトウェアを作ることはできますが、そのソフトウェアをWordPressと呼ぶことはできません。

WordPressという名称は、WordPress Foundationが所有する登録商標です。WordPress Foundationは非営利団体で、WordPressがフリーでオープンソースのプロジェクトとしてうまく運営されることを保証しています。

なぜWordPressのロゴと商標のルールを理解する必要があるのか?

WordPressは、インターネット上のすべてのサイトの約43%を運営しています。これは本当に大きな数字だ。

何百万もの企業がWordPressを使ってサイトやオンラインコミュニティ、ブログを効果的に運営しています。

WordPressのブランドと商標は、すべてがスムーズに機能するように保護する必要がありました。この目的のために、WordPressの商標は2010年にWordPress Foundationに譲渡されました。

さて、問題はWordPress FoundationだけがWordPressに取り組んでいるわけではないということだ。WordPressはオープンソースのプロジェクトであり、何千人もの人々がその成功に貢献している。

これらの寄稿者以外にも、世界中の多くの企業、個人、フリーランサーがWordPress関連の製品やサービスを販売しています。

WordPressサイトの運営、ウェブデザイン代理店、WordPress関連サービスのプロバイダーであれば、商標ポリシーを遵守するためにこれらのルールを理解する必要があります。

とはいえ、WordPressの商標とロゴをプロジェクトで適切に使用するために守らなければならないルールとガイドラインを見てみましょう:

ルール1:WordPressは常に大文字のPで書く

WordPressのスペルは大文字のPが正しい。

WordPressについて言及する場合は、本当に〜してもよいですか?間違ったスペルを使うことは嫌われ、プロフェッショナルではないとみなされます。

WordPressチームはこれを非常に重要視しており、2010年にWordPress 3.0のリリースでcapital_P_dangit()というビルトインフィルターを追加した。

この機能は、タイトル、コンテンツ、抜粋に含まれるWordPressのスペルミスを自動的に修正します:

function capital_P_dangit( $text ) {
	// Simple replacement for titles
	$current_filter = current_filter();
	if ( 'the_title' === $current_filter || 'wp_title' === $current_filter ) {
		return str_replace( 'Wordpress', 'WordPress', $text );
	}
	// Still here? Use the more judicious replacement
	static $dblq = false;
	if ( false === $dblq ) {
		$dblq = _x( '“', 'opening curly double quote' );
	}
	return str_replace(
		array( ' WordPress', '‘Wordpress', $dblq . 'Wordpress', '>Wordpress', '(WordPress' ),
		array( ' WordPress', '‘WordPress', $dblq . 'WordPress', '>WordPress', '(WordPress' ),
		$text
	);
}

ルール2:ドメイン名にWordPressを使用しない

先に述べたように、WordPressという名称はWordPress Foundationが所有する登録商標です。これはWordPressブランドを保護し、その継続的な成功を保証するものです。

他の登録商標と同様に、WordPress FoundationはWordPressというキーワードの独占的使用権を留保しています。つまり、ブランド名やサイトの一部としてWordPressを使用することはできません。

この制限にはドメイン名も含まれます。例えば

WordPressBeginner.com間違えました!
WPBeginner.com OK!

WordPressは、(wordpress.example.com)のようなサブドメインでも使用できます。WordPress Foundationは、主にトップレベルドメインに関係しています。

ドメイン名やブランド名にWordPressを使用している人を見かけたら、WordPress Foundationに連絡し、違反について通知してください。

こちらもご覧ください:WordPressサイト用の無料ドメイン名を登録する方法

WordPressのロゴは、灰色か、場合によっては白の円の中に灰色のリングでWの文字が描かれている。

Wの文字の高さは背が高く、優美である。多くのブロガーやサイトオーナーは、通常Wの高さが低いフェイク・ロゴを誤って使用することがある。

WordPress faux vs real logo

プロジェクトで正しいWordPressロゴを使用していることを本当に〜してもよいですか?

WordPressのロゴは、テキストマーク、Wロゴ入りテキストマーク、Wロゴとしてもご利用いただけます。

WordPress logo examples

これらのロゴはすべてWordPressの公式ロゴページからダウンロードできます(WordPressロゴのPNGとSVG形式を含む)。

これらの画像はご自由にお使いください。ただし、WordPressの商標ポリシーに従って使用することを本当に〜してもよいですか?

規則4:提携や推薦を行わない

WordPress Foundationは、WordPressプロジェクト自体のプロモーションのためにWordPressのロゴとブランドを使用することを望んでいます。

ただし、プロジェクトへの賛同や提携を示唆するような使い方はする権限がありません。以下はその例です:

  • 製品の広告にWordPressのロゴを使用することはできません。
  • WordPressやそのロゴをロゴの一部として使用することはできません。
  • サイト上に「Powered by WordPress.org」と表示することはできますが、「Recommended by WordPress」と表示することはできません。

つまり、WordPressのブランド名を不当に利用しようとする試みは、商標ポリシーに違反するということです。

ルールを守らないとどうなるか?

WordPress Foundationはこれらの違反を非常に深刻に受け止めています。商標ガイドラインを遵守するよう、彼らからメールが届くかもしれません。

これに従わない場合、さらなる措置が取られる可能性がある。これらの措置には、いくつかの法的手続きが含まれる場合があります。

例えば、ドメイン名にWordPressを使用している場合、財団はそのドメイン名を主張することができます。彼らの弁護士も法的通知を送ることができます。

法的手続きには莫大な費用がかかり、WordPressコミュニティ自体からのサポートも失うことになる。

コミュニティはWordPress Foundationがこのような行動をとることを頼りにしています。それはエコシステム内のすべての人に利益をもたらし、数え切れないほどのWordPress関連企業が成長し、成功するのに役立っています。

この投稿が、WordPressのロゴと商標ポリシーを遵守するためのルールを理解する一助となれば幸いです。また、中小企業に最適なWordPressプラグインや メールマーケティングサービスのガイドもご覧ください。

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

情報開示 私たちのコンテンツは読者支援型です。これは、あなたが私たちのリンクの一部をクリックした場合、私たちはコミッションを得ることができることを意味します。 WPBeginnerの資金源 をご覧ください。3$編集プロセスをご覧ください。

Avatar

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

究極のWordPressツールキット

ツールキットへの無料アクセス - すべてのプロフェッショナルが持つべきWordPress関連製品とリソースのコレクション!

Reader Interactions

16件のコメント返信を残す

  1. Syed Balkhi says

    Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

  2. Dennis Muthomi says

    I had no clue about any of these WordPress logo and trademark rules until reading this post! Seriously!

    I’m really glad I came across this valuable information.

    Thank you for clearly explaining the importance of following the proper usage of the WordPress trademark and logo.

  3. Jiří Vaněk says

    Thank you for explaining the WordPress license. Among other things, Big P taught me how to write WordPress itself. I have a feeling that if you write WordPress in the article, P itself will correct it to a capital letter. I noticed that and that’s why I started using it that way. For example, I did not know that I am not allowed to use WordPress in the domain name. This is a big surprise to me.

  4. Peach says

    Is it possible to use the WordPress blue hex colour in a logo/branding, for instance, or does that infringe copyright?

    • WPBeginner Support says

      Unless we hear otherwise, a specific color does not infringe copyright, other things can be the same color.

      管理者

  5. Terri L Main says

    So I’m teaching a class on designing a website using WordPress 5.9. If I understand this correctly, I can’t use the logo in a Facebook post promoting the course (even if there is a disclaimer.) I’m okay with that. I just want to not over-step.

    • WPcraze says

      Yes. But I assume that we cannot use it as our logo. But we can use it in our posts to refer to WordPress.

  6. kerrywebster says

    It would remind me of the Volkswagen logo too if it had a ‘V’ on top of it and it was a san-serif font and it had a chrome look to it and it was on the front of a car. :)

  7. Björn says

    Swedish ortographic rules states that camel case (for example WordPress) is not to be used in ordinary text. Companies and organizations may use them but they can’t expect other to do it.

  8. Marion says

    WordPress is amazing and if the price to use it is to spell and represent its logo correctly then I am more than happy to do so. The advice is very useful.

  9. Martin says

    I have never really liked the WordPress (capital P people) logo. It somehow always makes me thing of the VW logo.

返信を残す

コメントありがとうございます。すべてのコメントは私たちのコメントポリシーに従ってモデレートされ、あなたのメールアドレスが公開されることはありませんのでご留意ください。名前欄にキーワードを使用しないでください。個人的で有意義な会話をしましょう。