9ورڈپریس علامتبیس گیارہ موضوع کے لئے امیر کے ٹکڑوں کوڈ

I’ve pre­vi­ously detailed the code for enabling rich snip­pets in vari­ous word­press themes ([int­link id=“2948” type=“post”]mystique کے 2[/intlink], [int­link id=“2949” type=“post”]mystique کے 3[/intlink], [int­link id=“2468” type=“post”]مقالہ[/intlink] & [int­link id=“3017” type=“post”]Me Gusta[/intlink]) as well as some [int­link id=“1520” type=“post”]generic instructions[/intlink]. Below is a set of edits to enable rich snip­pets in the built-in word­press twenty elev­en theme.

1. Edit functions.php, لائن 584, edit the first line of the func­tion twentyeleven_posted_on() and change

<time class="entry-date" datetime="%3$ے">

to

<time class="entry-date updated" datetime="%3$ے">

2. Edit content-page.php, line 14

<h1 class="داخلے کی عنوان"><?php the_title(); ?></H1>
</ہیڈر><!-- .entry-header -->

add the fol­low­ing 2 lines

<h1 class="داخلے کی عنوان"><?php the_title(); ?></H1>
<مدت کلاس ="اپ ڈیٹ"><مدت کلاس ="قیمت عنوان" عنوان ="<?php the_date(); ?>"></دورانیہ></دورانیہ>
By <مدت کلاس ="author vcard"><مدت کلاس ="FN"><?php the_author_posts_link(); ?></دورانیہ></دورانیہ>
</ہیڈر><!-- .entry-header -->

3. Make sure your author inform­a­tion page has a link to your google+ profile
Edit functions.php, at the bot­tom add

function yoast_add_google_profile( $contactmethods ) {
// Add Google Profiles
$contactmethods['google_profile'] = 'Google Profile <abbr title="یونیفارم ریسورس لوکیٹر">یو آر ایل</abbr>';
return $contactmethods;
}
add_filter( 'user_contactmethods', 'yoast_add_google_profile', 10, 1);

then go to your word­press pro­file page (dash­board: صارفین: your pro­file) and fill in the google pro­file یو آر ایل سیکشن

4. Edit author.php to link to google pro­file, edit line 28 (between >header> اور </header>) اور تبدیل کریں

<h1 class="page-title author"><?php printf( __( 'Author Archives: %s', 'twentyeleven' ), '<مدت کلاس ="vcard"><a class="url fn n" href کی ="' . esc_url( get_author_posts_url( get_the_author_meta( "ID" ) ) ) . '" عنوان ="' . esc_attr( get_the_author() ) . '" rel="مجھے">' . get_the_author() . '</a></دورانیہ>' ); ?></H1>

کے ساتھ

<h1 class="page-title author"><?php printf( __( 'Author Archives: %s', 'twentyeleven' ), '<مدت کلاس ="vcard"><a class="url fn n" href کی ="' . esc_url( get_the_author_meta( "google_profile" ) ) . '" عنوان ="' . esc_attr( get_the_author() ) . '" rel="مجھے">' . get_the_author() . '</a></دورانیہ>' ); ?></H1>

Leave a Reply

9 تبصرے

Sسیم

Im work­ing on a stat­ic web­site and i really did­nt want to show updated by admin on my webpages. is there any way i can hide that but remove snip­pets error too…
i know u said its not recom­men­ded meth­od but do u know how can i do that.…????
شکریہ

Reply
Aیلیکس

میں آپ کو ایک یادگار شرط لگاتا ہوں گا, آپ کا شکریہ

Reply
Ssdpate956

Hi, thanks for the code but it did not cure twenty-eleven.

There is an incon­gru­ity in the first code sub­sti­tu­tion — the lines are identical
1. Edit functions.php, لائن 581 edit the first line of the func­tion twentyeleven_posted_on()
change

1

to

1

I am still get­ting the “update” field error and now it prints the author name at the top of pages and the update date on the top of posts.

Reply
جے ایسجان Scaife

Sorry — when I updated the post a while back I did­n’t notice that the word­press visu­al edit­or had removed all the class=”” code! It should now be fixed…

اپ ڈیٹ: I’ve totally rejigged how code is imple­men­ted and dis­played. Hope­fully this will pre­vent any future recur­rence, and along the way I think the func­tion­al­ity and present­a­tion has been improved too. Let me know what you think. 🙂

Yes — it will show the author name and the updated date on posts — this is required. Google will pen­al­ise your rank­ing if you try to imple­ment snip­pets which tag up hid­den con­tent — their view (rightly IMHO) is that if you think a search engine should see that inform­a­tion, then it’s use­ful inform­a­tion, and there­fore your vis­it­ors should see it too! You can eas­ily apply سی ایس ایس to style it and repos­i­tion it if you wish.

Reply