Posts tagged as:

SEO

Wordpress SEO Guide for Beginner

by wp-magz on December 19, 2009

Wordpress SEO Guide for Beginner

Wordpress SEO Guide for Beginner

I present to you the very first Wordpress SEO guide for beginners – The Blog Oh! Blog way.

It can be considered as a crash course for all the people who are struggling to get better search engine results with their Wordpress blogs. In this e-book, I will guide you how to rapidly configure your Wordpress blog with maximum SEO benefits.

Even Wordpress veterans can benefit from the tips as they might be missing out on a few points. I am distributing this e-book free of charge just to say thanks to the lovely Wordpress community and of course as someone once said, Wordpress is a magic CMS!!
[click to continue...]

{ 0 comments }

WordPress SEO Tips : Remove unnecessary links

by wp-magz on November 11, 2008

If you have a more tag and a comments link on every post, and of course a post title, you have three different links pointing to the same page. This can affect your rankings negatively (again, because Google may think these links point to different pages).

To remove the “#more” text from your ‘Read More’ link, replace the following line in your wp-includes/post-template.php

  1. $output .= ' <a href="'. get_permalink()
  2. . "#more-$id\">$more_link_text</a>";

with

  1. $output .= ' <a href="'. get_permalink()
  2. ."\">$more_link_text</a>";

{ 1 comment }