How To Create Meta Tag In Wordpress Sites? |
||
Welcome to the Zymic webmaster forums. Our forums are here to provide people the free ability to discuss a range of websites related topics such as design, development coding and marketing.
In order to post you will need to register for a zymic account or if you already have one simply login by using the form on the left.
Zymic Webmaster Forums Web Design & Development General Web Design Discussion |
||
2 Pages
1 2 >
|
![]() |
How To Create Meta Tag In Wordpress Sites? |
||
Mar 14 2012, 11:50 AM
Post
#1
|
|
|
Newbie ![]() Group: Members Posts: 8 Joined: 10-March 12 Member No.: 233,640 |
How to create meta tag in wordpress sites? any option is there i don't Know, please anyone guide me
|
|
|
Mar 20 2012, 03:50 PM
Post
#2
|
|
|
THE SILENT FORUM NINJA ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Administrators Posts: 3,758 Joined: 23-January 10 From: on your screen Member No.: 127,507 |
you would need to edit the theme's index.php in order to do it
|
|
|
Mar 23 2012, 08:15 AM
Post
#3
|
|
|
Member ![]() ![]() Group: Members Posts: 35 Joined: 15-September 11 Member No.: 208,722 |
To add meta tags to your site, simply add them to the header.php template file in your WordPress Theme, specifically in the head section near the link for the style sheet. At the top you will see the DOCTYPE tag and below that you will see a couple more tags and then the <title> tag, looking something like this:
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title /> This post has been edited by zpcs: May 24 2013, 03:45 PM
Reason for edit: Moderated Content
|
|
|
Mar 23 2012, 08:22 AM
Post
#4
|
|
|
Newbie ![]() Group: Members Posts: 14 Joined: 23-March 12 Member No.: 235,367 |
Simple plugin which allows you to add custom meta tags that will appearance beyond all pages on your blog or on the homepage only.
|
|
|
Mar 26 2012, 11:38 AM
Post
#5
|
|
|
Newbie ![]() Group: Members Posts: 3 Joined: 5-March 12 From: mumbai Member No.: 232,868 |
There are many wordpress plugins available for free of cost!! With the help of those plugins you can easily change the meta part without going deep into the theme editing!!!
|
|
|
Apr 7 2012, 07:32 AM
Post
#6
|
|
|
Newbie ![]() Group: Members Posts: 29 Joined: 4-April 12 From: jakarta Member No.: 236,731 |
select the setting you wrote or menu you'll definitely find some tamplate.
|
|
|
Jun 18 2012, 10:09 AM
Post
#7
|
|
|
Newbie ![]() Group: Members Posts: 8 Joined: 4-June 12 Member No.: 244,436 |
You can edit your meta tags with the "All-in-one" SEO pack
|
|
|
Jun 29 2012, 04:38 PM
Post
#8
|
|
|
Member ![]() ![]() Group: Members Posts: 30 Joined: 29-June 12 Member No.: 247,562 |
|
|
|
Aug 3 2012, 10:39 AM
Post
#9
|
|
|
Newbie ![]() Group: Members Posts: 16 Joined: 23-July 12 Member No.: 250,123 |
I am using "Allinone seo" for word press. This is really nice addon for your all seo views. It allow you to add Title, Meta and Google Analytics code from direct website.
|
|
|
Aug 6 2012, 09:11 AM
Post
#10
|
|
|
Newbie ![]() Group: Members Posts: 9 Joined: 6-August 12 Member No.: 251,588 |
Simply add the plugin “All in One SEO Pack” which you can search for within the WordPress control panel (Plugins>Add New). Once you have activated it you will have some options at the bottom of each post where you can add a Title, a Description and Keywords. Simply fill out this information before you publish each post and you are done.
Simple! __________________________________________ serviced apartments singapore | service apartment singapore | short term stay singapore | |
|
|
Aug 6 2012, 10:44 AM
Post
#11
|
|
|
Newbie ![]() Group: Members Posts: 16 Joined: 21-July 12 Member No.: 249,909 |
There are plenty of great SEO plugins out there, but if you want absolute control over your website here’s a fast function to add your own META tags to a WordPress website.
<?php if (is_single()) { global $post; foreach((wp_get_post_tags($post->ID)) as $tags) { $t .= “, “.$tags->name; } echo “<meta title=’description’ value=’”.$post->post_excerpt.’;”; echo “<meta title=’keywords’ value=’$t’>”; } ?> That example will allow you to place the excerpt in the description meta tag, while placing your keywords as comma separated text in the keyword meta tags. If you want to make the code a little more complicated, but a lot more accurate for SEO purposes, you should add the post’s categories to the list as well. foreach((get_the_category()) as $category) { $c .= “, “.$category->cat_name; } Here’s the final code, place this in the functions.php file of your website (located in /wp-content/themes/[your theme name]/) and the meta tags should appear on single posts. <?php function thisismyurl_meta_tags (){ if (is_single()) { global $post; foreach((wp_get_post_tags($post->ID)) as $tags) { $t .= “, “.$tags->name; } foreach((get_the_category($post->ID)) as $category) { $c .= “, “.$category->cat_name; } echo “<meta title=’description’ value=’”.$post->post_excerpt.”‘>”; echo “<meta title=’keywords’ value=’$t.$c’>”; } } add_filter( ‘wp_head’, ‘thisismyurl_meta_tags’ );?> Source: http://thisismyurl.com/6262/create-wordpre...ta-tags-plugin/ ----------------------------------------------------------------------------------------------------------------- field sobriety tests georgia | atlanta criminal defense lawyer | family law attorney atlanta |
|
|
Aug 6 2012, 10:55 AM
Post
#12
|
|
|
Newbie ![]() Group: Members Posts: 2 Joined: 4-August 12 Member No.: 251,439 |
Try All in One SEO Pack, wordpress plugin.
|
|
|
Aug 7 2012, 02:38 PM
Post
#13
|
|
|
Newbie ![]() Group: Members Posts: 18 Joined: 24-July 12 From: London, UK Member No.: 250,278 |
You need to install All in one SEO pack. With it you can easily the meta description and the meta keywords for every page.
|
|
|
Aug 10 2012, 07:51 AM
Post
#14
|
|
|
Newbie ![]() Group: Members Posts: 9 Joined: 10-August 12 Member No.: 252,056 |
|
|
|
Aug 10 2012, 09:44 AM
Post
#15
|
|
|
Newbie ![]() Group: Members Posts: 27 Joined: 7-August 12 From: U.S.A. Member No.: 251,714 |
|
|
|
Aug 11 2012, 09:18 AM
Post
#16
|
|
|
Newbie ![]() Group: Members Posts: 8 Joined: 11-August 12 Member No.: 252,162 |
You can use meta tag for your site in index.php page. Better you can get help from SEO companies to do so. They analyse the errors in your web page and validate them.
Web design and development |
|
|
Sep 3 2012, 05:25 AM
Post
#17
|
|
|
Newbie ![]() Group: Members Posts: 29 Joined: 18-August 12 Member No.: 252,893 |
meta tags can be created easily using this better you have to learn more
|
|
|
Sep 21 2012, 08:47 AM
Post
#18
|
|
|
Newbie ![]() Group: Members Posts: 29 Joined: 18-August 12 Member No.: 252,893 |
To add meta tags to your site, simply add them to the header.php template file in your WordPress Theme, specifically in the head section near the link for the style sheet. At the top you will see the DOCTYPE tag and below that you will see a couple more tags and then the <title> tag, looking something like this:
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title> web design&development |
|
|
Sep 24 2012, 06:28 AM
Post
#19
|
|
|
Newbie ![]() Group: Members Posts: 4 Joined: 24-September 12 Member No.: 258,257 |
To add meta tags in wordpress, there are various plugins available. The most important of all is Yoast, All In One SEO which helps in creation of title meta tags in wordpress.
Rameshwaram Hotels |Rameshwaram Hotel |
|
|
Oct 4 2012, 04:08 PM
Post
#20
|
|
|
Newbie ![]() Group: Members Posts: 20 Joined: 4-October 12 Member No.: 259,305 |
For wordpress there are addons are also available. You can choose any one from SEO plugins for your use.
|
|
|
![]() |
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users) |
||
| 0 Members: | ||
Forum Jump |
||
| Lo-Fi Version | Time is now: 20th June 2013 - 06:55 AM |