Optimizing WordPress for search engines

It is not always known, the choice of theme, as well as the use of plugins, has a decisive role in sending a site managed by Wordpress.

Subject

Default themes are not optimized for search engines, as they have the following disadvantages:

The topic of the optimized site must be cleared and comply with optimal organizational rules.

Site optimization

It goes through the configuration stage, and ends with the installation of plugins, which we will see below .

Checking the openness of the site for robots

By default, Wordpress bans the site from robots. After installing Wordpress, see the source code. Presence of <meta name = "robots.... means the site will not be indexed.
To fix this anomaly, go to Administration -> Settings -> Privacy and Check Box: "I want my blog to be visible to everyone, etc."

Heading

To avoid repeating the name and slogan on each page, delete them in the header.php file and replace with the logo in the image.
The procedure is explained by setting the Cryonie theme.

URL addresses

Meaningful URLs are really preferable to article numbers used by the default configuration. The easiest and best way to set them up is this:

Custom structure: %postname%

Thus, URLs will be formed from keywords that will appear in links from other sites on your site/blog.

robots.txt file

An example of a code-based robots.txt file that is appropriate for the meaningful URLs configured above:

User-agent: *
Disallow: /cgi-bin
Disallow: /wp-admin
Disallow: /wp-includes
Disallow: /wp-content/plugins
Disallow: /wp-content/cache
Disallow: /trackback
Disallow: /feed
Disallow: /comments
Disallow: /category/*/*
Disallow: */trackback
Disallow: */feed
Disallow: */comments
Disallow: /*?*
Disallow: /*?
Sitemap: http://www.example.com/sitemap.xml

Of course example.com replace with the site name .

You cannot block access to JavaScript code and, therefore, to the topic, since Google will fine your site.

Page Optimization

In its webmaster guide, Google gives "Design and Content Tips." They apply primarily to page organization.

Multi-level structure

The name of the page in the <H1> tag, subtitles in the <H2> tags, and so on.

Relevant references

All links on the page should be relevant, closely related to the content. Links should not be too large, as, as reminded in the article What you need to know about PageRank, the popularity of one page of the site is transferred to other pages by links.

Archive, cloud tag, etc. are very useful for accessing content, but rather they should be on the home page or page dedicated to it.

The list of recent articles is not necessarily relevant to the content, it should be excluded or limited to 3 links, on the other hand, the list of relative articles is suitable for both visitors and engines. Plugins allow you to create it automatically.

Images

Fill in the ALT field when inserting images. It is designed for motors and is a textual representation of the image.

Nofollow

Don't worry about the nofollow attribute for your connections, no matter what we say. This brings nothing and Wordpress adds it by default in the comments to curb spam: this is the only place they are useful.
(Ref: Nofollow и PageRank.)

Useful plugins for SEO

Indispensable plugins:

Other plugins:

Conclusion

Creating a blog is easy. Creating a successful site is harder. Wordpress is not set up by default for success, it will become so after we take a little optimization time. This one goes through a selection of SEO-Friendly theme and plugins.
The necessary steps before you can devote yourself to content...

Documentation