DIY मीडिया होम लोगो

अपनी खुद की होम थिएटर और हाय-Fi सेटअप डिजाइन और बनाने के लिए परम साइट.

2Wordpress लोगोRich snippets code for Mystique 3.x

I’ve pre­vi­ously writ­ten about rich snip­pets code for[int­link id=“2948” type=“post”]रहस्यपूर्ण 2[/intlink].  There are also[int­link id=“1520” type=“post”]generic instructions[/intlink] and code for the themes [int­link id=“3015” type=“post”]twenty eleven[/intlink], [int­link id=“3017” type=“post”]me gusta[/intlink] तथा [int­link id=“2468” type=“post”]thesis[/intlink].  Below is updated code for Mys­tique 3

1. The first prob­lem was with the author inform­a­tion / hrecipe section

The solu­tion:

You need a google pro­file. Your google pro­file must be linked from some­where on the page, with rel=“me”, AND the main domain of your web­site must be lis­ted on your google pro­file links.

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

सबसे पहले, I added the code from yoast (जैसा की नीचे दिखाया गया) to functions.php

[PHP]function yoast_add_google_profile( $con­tact­meth­ods ) {
// Add Google Profiles
$contactmethods[‘google_profile’] = ‘Google Pro­file यूआरएल;
return $con­tact­meth­ods;
}
add_filter( ‘user_contactmethods’, ‘yoast_add_google_profile’, 10, 1);[/PHP]

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

तीसरा, I edited a line to author.php, फिर, based on inform­a­tion from yoast, but changed for the Mys­tique theme

[PHP]
<?php if(($app—>author->get(‘user_url’)) && ($app->author->get(‘user_url’)!== ‘https://)): ?>
<?php _ae(‘Home page:); ?>
<?php endif; ?>
[/PHP]

And add the following

[PHP]
<?php if(($app—>author->get(‘google_profile’)) && ($app->author->get(‘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().</ए>;
[/PHP]

When this is cor­rectly imple­men­ted you should get a suc­cess mes­sage in the snip­pets test­ing tool which reads Veri­fied: Author­ship markup is cor­rect for this page

2. The second problem(एस) were with the hfeed / hentry sec­tion and included the following:

मिस आईएनजी आवश्यक hCard "लेखक".
चेतावनी दें आईएनजी: कम से कम एक क्षेत्र Hcard के लिए सेट किया जाना चाहिए.
चेतावनी दें आईएनजी: कम से कम एक क्षेत्र HatomEntry के लिए सेट किया जाना चाहिए.
चेतावनी दें आईएनजी: मिस आईएनजी आवश्यक फ़ील्ड "प्रविष्टि शीर्षक".
चेतावनी दें आईएनजी: मिस आईएनजी आवश्यक क्षेत्र "अपडेट".
चेतावनी दें आईएनजी: मिस आईएनजी आवश्यक hCard "लेखक".

समाधान(एस):

Use the word­press edit­or to edit single.php

Find the code

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

replace this with…

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

A final note — Don’t just copy and paste the code from this page, as for some reas­on (I’m guess­ing char­ac­ter encod­ing) it wont work. Copy it from here and paste into win­dows note­pad. Then re-copy it from win­dows note­pad (or any oth­er basic plain-text-only edit­or) and paste into the word­press edit­or. Going via note­pad loses any hid­den encod­ing or oth­er data which causes a prob­lem so the code is treated as the plain-text it is sup­posed to be!

Leave a Reply

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.

जवाब दें