过期域名预定抢注

 找回密碼
 免费注册

wprobot 採集amazon 標題過長的解決辦法(插件)

 火... [複製鏈接]
發表於 2012-2-8 13:06:59 | 顯示全部樓層 |閱讀模式
在一Blog發現的插件,作者把源碼給出來了,
/ r  r0 @8 o6 ?" R6 I
2 o9 |1 x+ q% X) J: u4 s, j* A原文:
* z. W+ u% Z) c
( V! n+ T% f6 u3 y+ @Truncate Titles1 m* r0 m) y) w& R8 f' [
Let』s say you』ve written lots of posts with lengthy titles. But now you』re switching to a theme that doesn』t handle long titles well. Copy this into a file, name it truncateTitle.php (or whatever.php), upload to your plugins directory, and activate it in the usual way. Don』t leave any blank lines or spaces before or after this code (or you』ll get an error).
  1. <?php
    . V, |* G: c' }$ I0 Z. S% Z0 ~
  2. /*0 j4 c; {) P. P# j! W
  3. Plugin Name: KB Truncate Title
    - I" \/ \' Q: w( K; v
  4. Plugin URI: http://adambrown.info/b/widgets/category/custom/
    , [4 q* Q6 u3 S$ y& F
  5. Description: Truncates titles so they don't break your theme: x$ N% N8 z9 Z, B( i5 U, T. X
  6. Version: 1.0
    + u) v* i" t1 }( R
  7. Author: Adam R. Brown
    ) V/ G- f4 L3 u5 Q0 O9 X0 k4 y1 W# B
  8. Author URI: http://adambrown.info/
    5 o& t2 H8 a% }
  9. */
    * {& K3 Q2 ]7 x  H" G! I- R: J

  10. # ~0 g  b# c" G- W1 S$ g' S
  11. define('KB_TRUNCATE_TITLE', 50); // change 50 to max number of characters to allow" i* r$ X# f2 s! ?3 C: d4 q( c$ f4 f

  12. ; J5 d2 T$ o8 \# X) H/ W1 u
  13. function kb_truncateTitle($title){
    7 f8 o2 x; D* H/ P3 b4 M8 U' o
  14.         if (!is_int( KB_TRUNCATE_TITLE ) || 1>KB_TRUNCATE_TITLE )
    % j7 w  |" Y& T  F& |; [* _
  15.                 return $title;
    2 f' p3 l9 W3 P6 I6 w
  16.         // rather than just use substr, let's make sure we cut it at the end of a word, s) u7 y4 f. |- y; B
  17.         $arr = explode(' ', $title);
    8 i; t# J9 r1 R9 b  r
  18.         $out = '';
    $ @6 w/ a- `/ |4 P6 T
  19.         $count = 0;
    8 S! v- R+ D1 Y, g
  20.         foreach( $arr as $str ){
    7 p/ w) u0 Z* l1 s( D6 R. ~
  21.                 $count += ( strlen($str) + 1); // +1 is for the space we removed
    : f: v! p! J5 ]3 x4 I' R) H) U" _
  22.                 if ($count > KB_TRUNCATE_TITLE)
    5 T/ k- x! @, ?! z, b8 T
  23.                         break;) m6 l% ]: v: y  V1 @" _
  24.                 $out .= $str . ' ';
    . V" u, t/ |$ B; G: i" s
  25.         }+ j8 n3 }8 r/ i7 Y! l
  26.         // make sure we got SOMEthing
    ( D0 U7 Z3 e$ t3 k# Z1 _
  27.         if (!$out). U0 n* r" c% k, [
  28.                 $out = $arr[0];2 K: i1 z7 I5 W* t% e
  29.         return $out;
    0 j& Y3 H0 O6 {7 p! e# l# c7 [
  30. }
複製代碼
This entry was written by Adam on January 7, 2008. This entry was posted in Custom. Bookmark the permalink. Both comments and trackbacks are currently closed.# h. s0 F: _4 o& D/ B( i& K

7 \. O# s1 s8 |5 i+ H6 o這個插件的好處是不會把單詞從中間間斷,它會在接近限定的單詞數範圍內把最後一個單詞截斷。% a/ X( y4 o9 _3 ~* @9 h( g$ Z/ Z
用Google翻譯也都能知道這大概說什麼,不過我順便說下吧,新建一個文件truncateTitle.php  ,把代碼複製進去,注意不要有空格,要不會出錯,壓縮成zip文件上傳激活就可以了,不過我在後台看不見插件,卸載麻煩,考慮清楚再安裝。 小弟不才,不正之處,還望指點一二。
發表於 2012-2-8 20:09:23 | 顯示全部樓層
多謝兄弟分享!
回復 给力 爆菊

使用道具 舉報

發表於 2012-2-9 13:49:01 | 顯示全部樓層
謝謝分享,不過最好把原文地址貼出來,以供參考!
回復 给力 爆菊

使用道具 舉報

發表於 2012-2-9 14:24:34 | 顯示全部樓層
這個插件很好。。。收藏
回復 给力 爆菊

使用道具 舉報

發表於 2012-2-9 16:41:04 | 顯示全部樓層
原來還有這種插件
回復 给力 爆菊

使用道具 舉報

發表於 2012-2-28 09:43:45 | 顯示全部樓層
收藏了,以後用得著、
回復 给力 爆菊

使用道具 舉報

發表於 2012-3-4 10:42:58 | 顯示全部樓層
好東西,收藏了
回復 给力 爆菊

使用道具 舉報

發表於 2012-3-30 17:48:32 | 顯示全部樓層
這也能採集呀,不錯
回復 给力 爆菊

使用道具 舉報

發表於 2012-4-3 11:32:35 | 顯示全部樓層
直接用css樣式把超長的部分隱藏就好了,這樣搜索引擎索引完整,界面又不會錯亂
回復 给力 爆菊

使用道具 舉報

發表於 2012-4-26 13:16:37 | 顯示全部樓層
thanks for you share
回復 给力 爆菊

使用道具 舉報

您需要登錄後才可以回帖 登錄 | 免费注册

本版積分規則

4um點基跨境網編創業社區

GMT+8, 2024-11-24 06:02

By DZ X3.5

小黑屋

快速回復 返回頂部 返回列表