DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁SEO優化 >> SEO優化集錦 >> 非插件實現高效的SEO優化
非插件實現高效的SEO優化
編輯:SEO優化集錦     

WordPress有很多SEO插件來幫助進行搜索引擎優化。如果你不想使用插件,下面這個高效的代碼,將使你的博客對搜索引擎更加友好。

seo1

將下面代碼粘貼到你的functions.php文件:

  1. function basic_wp_seo() {  
  2.     global $page, $paged, $post;  
  3.     $default_keywords = 'wordpress, plugins, themes, design, dev, development, security, htaccess, apache, php, sql, html, css, jquery, javascript, tutorials'; // customize  
  4.     $output = '';  
  5.   
  6.     // description  
  7.     $seo_desc = get_post_meta($post->ID, 'mm_seo_desc', true);  
  8.     $description = get_bloginfo('description', 'display');  
  9.     $pagedata = get_post($post->ID);  
  10.     if (is_singular()) {  
  11.         if (!empty($seo_desc)) {  
  12.             $content = $seo_desc;  
  13.         } else if (!empty($pagedata)) {  
  14.             $content = apply_filters('the_excerpt_rss', $pagedata->post_content);  
  15.             $content = substr(trim(strip_tags($content)), 0, 155);  
  16.             $content = preg_replace('#\n#', ' ', $content);  
  17.             $content = preg_replace('#\s{2,}#', ' ', $content);  
  18.             $content = trim($content);  
  19.         }   
  20.     } else {  
  21.         $content = $description;  

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved