网站标题怎样写,才能更加亲近搜索引擎?看看这个

    这方法很简单,将下面的代码添加到主题的 functions.php

    1. <?php
    2. function auto_wp_title($title, $sep) {
    3. global $paged, $page;
    4. if (is_feed()) {
    5. return $title;
    6. }
    7. // Add the site name.
    8. $title.= get_bloginfo('name', 'display');
    9. // Add the site description for the home/front page.
    10. $site_description = get_bloginfo('description', 'display');
    11. if ($site_description && (is_home() || is_front_page())) {
    12. $title = "$title $sep $site_description";
    13. }
    14. if ($site_description && (is_singular())) {
    15. $title = "$title $sep $site_description";
    16. }
    17. if ($site_description && (is_tag())) {
    18. $title = "$title $sep $site_description";
    19. }
    20. if ($site_description && is_category()) {
    21. if (is_category(array('product-1', 'product-2', 'product-3'))) {
    22. $title = single_cat_title('', false) . " _ " . single_cat_title('', false) . "代理 _ " . single_cat_title('', false) . "加盟 $sep $site_description";
    23. } else {
    24. $title = "$title $sep $site_description";
    25. }
    26. }
    27. // Add a page number if necessary.
    28. if (($paged >= 2 || $page >= 2) && !is_404()) {
    29. $title = "$title $sep " . sprintf('第 %s 页', max($paged, $page));
    30. }
    31. return $title;
    32. }
    33. add_filter('wp_title', 'auto_wp_title', 10, 2);

    你首先在 header.php 顶部添加如下代码

    <title><?php wp_title( '_', true, 'right' ); ?></title>