2Wordpressのロゴミスティーク3.xのリッチスニペットコード

私は以前にリッチスニペットコードについて書いてきた[int­link id=“2948” type=“post”]神秘的雰囲気 2[/intlink].  もあります[int­link id=“1520” type=“post”]一般的な指示[/intlink] そして、テーマのためのコード [int­link id=“3015” type=“post”]twenty eleven[/intlink], [int­link id=“3017” type=“post”]私は好き[/intlink] と [int­link id=“2468” type=“post”]論文[/intlink].  Below is updated code for Mys­tique 3

1. 第一の問題は、著者情報とありました / hrecipe section

ソリューション:

あなたは、Googleプロフィールを必要とします. Googleプロフィールは、ページ上のどこからリンクされなければなりません, RELと=「私」, そして、あなたのウェブサイトのメインドメインは、Googleプロフィールへのリンクに記載されている必要があり.

I achieved this with the Mys­tique theme with a series of modifications.

初めに, 私はからのコードを追加しました ヨースト (以下に示すように) functions.phpへ

[PHP]function yoast_add_google_profile( $con­tact­meth­ods ) {
// Add Google Profiles
$contactmethods[‘google_profile’] = ‘Google Pro­file URLは」;
return $con­tact­meth­ods;
}
ADD_FILTER( ‘user_contactmethods’, ‘yoast_add_google_profile’, 10, 1);[/PHP]

二番, I went to my word­press pro­file page and filled in the google pro­file field with a link to my google profile

三番, 私はauthor.phpに行を編集しました, 再び, yoastからの情報に基づいて、, しかし、ミスティークのテーマの変更

[PHP]
<?PHPの場合(($app—>author->ゲット(‘user_url’)) && ($app->author->ゲット(‘user_url’)!== ‘https://」)): ?>
<?php _ae(‘Home page:」); ?>
<?PHP endifの; ?>
[/PHP]

And add the following

[PHP]
<?PHPの場合(($app—>author->ゲット(‘google_profile’)) && ($app->author->ゲット(‘google_profile’)!== ‘https://」)): ?>
<?php _ae(‘Google Profile:」); ?>
<?PHP endifの; ?>
[/PHP]

Then I edited AtomObjectAuthor.php and changed line 213 by adding rel=“author” so it reads as follows

[PHP]
return ‘<a title=“ ‘.$title.’ ” href=“ ‘.$this->getPostsURL().’ ” rel=“author”>’.$this->getName().」</a>」;
[/PHP]

これが正しく実装されている場合、あなたは読み込みスニペットテストツールでの成功メッセージを取得する必要があります 確認済み: 著者のマークアップは、このページの正しいです

2. 第二の問題(S) hfeedと一緒にいました / hentry sec­tion and included the following:

ミスING必要とhCardの "作者".
ワーニング: 少なくとも1つのフィールドにhCardのために設定する必要があります.
ワーニング: 少なくとも1つのフィールドにHatomEntryのために設定する必要があります.
ワーニング: ミスING必須フィールド "エントリタイトル」.
ワーニング: ミスING必須フィールド」を更新」.
ワーニング: ミスING必要とhCardの "作者".

ソリューション(S):

single.phpを編集するワードプレスのエディタを使用して、

コードを探します

[xhtml]
<h1 class=“title”></H1>
[/xhtml]

これを置き換えると...

[xhtml]
<h1 class=“title entry-title”></H1>
<h2 class=“updated”></h2>
<h2 class=“vcard”></h2>
[/xhtml]

最後の注意 - ちょうどこのページからコードをコピーして貼り付けないでください, 何らかの理由として、 (私は、文字エンコーディングを推測しています) それは文句を言わない仕事. ここからそれをコピーし、Windowsのメモ帳に貼り付けます. 次に、Windowsのメモ帳からそれを再コピーします (または任意の他の基本的なプレーンテキストのみのエディタ) そして、wordpressのエディタに貼り付けます. メモ帳を経由するコードは、あることが想定されるプレーンテキストとして扱われるので、問題を引き起こす任意の隠された符号化又は他のデータを失います!

返信を残す

2 注釈

Rロブ

Is there an update for this since the code is so much dif­fer­ent now using the atom engine?
I have tried to pos­sibly add the code with the atom calls but I am just a little unsure of how to get this to work properly.

応答
JSジョン・スカイフ

Not yet as this code still works. 但し, I will be doing an update of it all in the near future — once the issues asso­ci­ated with the migra­tion of the site have been resolved 🙂 Check back in 3–4 weeks 🙂

応答