2 SEO Skills on WordPress

Here let me share 2 skills on wordpress seo. The default method of a post read more is usally shows as “read more…”, or “Continue reading”. This is very bad for our seo purpose. We all know that we’d bette use our keywords as text link or at least the text link should contain our main keywords.  How to do then? We can use each post title instead “read more…” as default text link.

Login your wordpress admin panel, go to Apprearance –> Editor, and click content.php, find a bit that looks like this:   the_content(‘Continue Reading’);   and change it to

the_content(‘Continue Reading ‘ . get_the_title(”, ”, false));

Done.

The second skill is we can add random posts link under each post. Login your wordpress admin panel, go to Apprearance –> Editor, and click single.php. Add:

<div align=”left” style=”margin:50px;”> <ul>  <?php //$rand_posts = get_posts(‘numberposts=-1&orderby=title&order=ASC’); $rand_posts = get_posts(‘numberposts=5&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>

at proper place.