WordPress website structure optimization

This is my own website, for your reference and reference "": Next stop travel

1. Website display

front page:
Please add image description

Article page:
insert image description here

2. Search engine friendly website structure

1. Search engine friendly website structure

insert image description here
insert image description here
Concise, clear navigation:
insert image description here

2. Breadcrumb Navigation

insert image description here
Add the following code to the appropriate position of single.php (or other appropriate position of the page that needs to display breadcrumb navigation
, the selected theme is different, it is different, the example is the wordstar theme)

<?php if(function_exists('yoast_breadcrumb')){
    
    yoast_breadcrumb('<p 
id="breadcrumbs">','</p>');}?>

insert image description here
insert image description here

3. Avoid Spider Traps

1. Subdomain and directory selection

insert image description here

2. Robots file

insert image description here

 User-agent: *
 Allow:/
 Disallow: /wp-admin/
 Disallow: /wp-includes/
 Disallow: /wp-content/plugins
 Disallow: /wp-content/cache
 Disallow: /wp-content/themes
 Disallow: /wp-*
 Disallow: /wp-login.php
 Sitemap:http://www.fzuem.com/sitemap_index.xml

3. Make spiders not follow nofollow

<a href=“http://www.fzuweb.com/" rel="nofollow">这里是锚文字</a>

insert image description here

4. URL address optimization

insert image description here
insert image description here

Static URL: Dynamic URL is extremely unfavorable for search engines to crawl web pages
. Dynamic URL: URLs with characters such as "?", "=", "%", and "&" and "$" appear in the URL.
Static URL: The whole URL does not contain "?", it can be regarded as a static URL, the obvious difference is html/htm. ends with Html.

insert image description here

4. Search resource platform

Baidu Webmaster Tools:
insert image description here
insert image description here

5. Rich internal links

insert image description here

1. Breadcrumb navigation optimization

insert image description here

2. Anchor text optimization

insert image description here
insert image description here

3. Related article optimization

insert image description here

6. Site map

insert image description here
insert image description here
insert image description here

1. Footer.php adds sitemap link

insert image description here

2. Put the sitemap link in the robots file

insert image description here

Guess you like

Origin blog.csdn.net/wxfighting/article/details/123812799