WordPress SEO

We should take care the following points on wordpress seo:
1. meta title:
We shoud let wordpress shows different titles for homepage, page, post, categories, very simple, replace the original title related code to

<title><?php wp_title(‘&laquo;’, true, ‘right’); ?> <?php bloginfo(‘name’); ?></title>

2. page title
Save as meta title, we can use the following code:
<h1><a href=”http://www.glassesexperts.com/”><?php if ( is_single() || is_page() || is_category() || is_tag() ) { wp_title(”); } else { bloginfo(‘name’); } ?></a></h1> Continue reading “WordPress SEO”

Some skills on showing wordpress posts

Sometimes we want to show wordpress posts according to our demanded styles. For example, we like to show 10 posts, and post links resource codes should like this:
<a title=”king php” href=http://www.kingphp.com>king php</a>
We can do as following:
<ul>
 <?php
 $rand_posts = get_posts(‘numberposts=10&orderby=rand’);
 foreach( $rand_posts as $post ) :
 ?>
    <li><a title=”<?php the_title(); ?>” href=”<?php the_permalink(); ?>”> <?php the_title(); ?></a></li>
 <?php endforeach; ?>
</ul>
</div> 
Continue reading “Some skills on showing wordpress posts”

How to let 2 domains show the same contents in Hostgator Hosting?

Sometimes we want to 2 domains show the same contents in Hostgator Web Hosting, and show different domain. For example, we want to let www.cheapglasses123.com, and www.bestpriceglasses.org show the same contents, but use differnt domains also. We can do like this when we Addon Domains to Hostgator Cpanel. Continue reading “How to let 2 domains show the same contents in Hostgator Hosting?”

Some tips on adding ads code to wordpress

If we do not want ads code shows at wordpress homepage, but at the other pages, we can use the following code:
<?php if (($wp_query->current_post == 0)and (!is_home())) : ?>
<div style=”float:right;margin-left:20px”><br>
Buy sunglasses online.
</div>
<?php endif; $postcnt++; ?>

If we want the ads codes show at all pages, we can use the following codes: Continue reading “Some tips on adding ads code to wordpress”