|
| 1
|
|

|
Admin
Site Admin
Occupation: Web Developer
Location: Canada

Offline
|
Joined: Nov 26, 2004
Find all post by Admin
Total Posts: 101
0.04 posts per day
Total Words: 28,112
|
Posted: Mon Sep 20, 2010 8:03 pm Post subject: WordPress Tips Dynamic Meta Description and Keywords howto
|
|
|
|
|
This is a quick tip on how to add dynamic meta description and keywords to each different url of your WordPress blog.
Maximize your SEO advantage using your Wordpress Blog.
Wordpress SEO Tips Dynamic Descrition and Keywords:
Open your header.php file from your theme directory and put this code into:
Meta Description Content
|
Code:
|
<meta name="description" content="
<?php if (have_posts() && is_single() OR is_page()):while(have_posts()):the_post();
$out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", get_the_excerpt());
echo apply_filters('the_excerpt_rss', $out_excerpt);
endwhile;
elseif(is_category() OR is_tag()):
if(is_category()):
echo "Posts related to Category:
".ucfirst(single_cat_title("", FALSE));
elseif(is_tag()):
echo "Posts related to Tag:
".ucfirst(single_tag_title("", FALSE));
endif;
else: ?>
ADD HERE YOUR DEFAULT DESCRIPTION
<?php endif; ?>" />
|
Meta Keywords Content
|
Code:
|
<meta name="keywords" content="
<?php
$tags = get_tags(array('orderby' => 'count', 'order' => 'DESC'));
$xt = 1;
foreach ($tags as $tag) {
if ($xt <= 20) {
echo $tag->name.", ";
}
$xt++;
}
?>ADD, HERE, YOUR, STATIC, KEYWORDS" />
|
Hope this helps someone who is looking to get better SEO results from there wordpress blog.
Admin
Forum Signature Affordable Web Hosting | Ultra Game Play
|
|
|
|
|
Back to top
Sponsor Advertising
|
|
|
|
|

|
TimMCQuinn
Team-Member
Occupation: Web Developer
Location: USA
Online
|
Joined: Jan 03, 2007
Total Posts: 6,126
10.5 post per day
Total Words: 510,56
|
Posted: Mon Sep 20, 2010 8:03 pm Post subject: This ia a great site
|
|
|
|
|
Hey!, Check out these new links I think you may find them intresting and relevant to what your looking for....
Forum Signature Need web hosting or blog hosting try VisionThisHosting.com their the best!
|
|
|
|
|
|
|
|
Back to top
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You cannot download files in this forum
|
|
|
|