30+ (More) Most Wanted Wordpress Tips, Tricks and Hacks

Advertisement

Most of the Wordpress blogs look more or less similar these days, to stand uniquely out from the rest, you have got to tweak it. And by tweaking, we mean really getting your hands dirty down on the blog theme and PHP codes. We’ve previously showcased more than 40 Wordpress tricks and hacks you can perform on your blog but we quickly realized there are still a lot of impressive Wordpress tricks, hacks and plugins out there that we thought are really great.

Wordpress Tricks Hacks

So as a sequel, here’s another 30+ Wordpress tricks and hack. If you are wondering how some bloggers add those cool functions, mods or displays on their Wordpress blog, be sure to run through our list. You might just find the solution in here.

More Wordpress related articles we’ve previously written:

Full list after jump.

  1. Apple Flashy Accordion Sidebar

    Use the Accordion plugin in jQuery UI to create an Apple-alike Wordpress sidebar.

  2. Adding Tabs to Sidebar

    Creating tabs on Wordpress sidebar with Yahoo! UI Library

  3. Sidebar With Dynamic Contents

    Every blog visitor has different habits, but many tend to ignore sidebars because they are always the same. Mixing things up and keeping the contents of the sidebar relevant to the post can make them a bit more likely to be noticed.

  4. Allow Users To Submit Blog Post

    This plugin allows you to add highly customisable forms to your website that allows non-registered users and/or subscribers (also configurable) to submit posts.

  5. Paginated Comments

    Give you the ability to break your comments into a number of search engine optimized pages.

  6. Image Caption

    Extracts the title or alt attribute from images within your blog post and generates a neat caption directly underneath those images. Supports custom CSS styling for captions.

  7. Random Redirect

    Allows you to create a link to yourblog.example.com/?random which will redirect someone to a random post on your blog, in a StumbleUpon-like fashion.

  8. Google Syntax Highlighter for WordPress

    Easily integrates the Google Syntax Highlighter by Alex Gorbatchev into WordPress. Image below show how codes look like in Wordpress with Google Syntax Highlighter.

  9. Facelift Image Replacement (FLIR) for Wordpress

    FLIR allows you to convert text and title into images (better display quality) on the fly without hassle. Now this FLIR Wordpress plugin make things even easier for bloggers.

  10. del.icio.us for WordPress

    del.icio.us for WordPress displays your latest del.icio.us bookmarks in your WordPress blog.

  11. Create Your Own PopURLs Within Wordpress

    Like the way how PopURL display contents? Now you can create similar inside Wordpress.

  12. Exclude certain categories from being displayed

    2 ways to hide posts from certain categories to be displayed on the blog. You can either put this code inside the loop

    <?php
    if ( have_posts() ) : query_posts($query_string .'&cat=-1,-2'); while ( have_posts() ) : the_post();
    ?>
        

    or you can use Advanced Category Excluder.

  13. Another Date Image Hack

  14. Create a calendar view of your article post date.

  15. Styling Individual Posts

    Styling one post a little different from the rest with the use of the_ID.

  16. How To Avoid Duplicate Posts

    Duplicated contents are pretty bad and they somehow affects how search engine weights your site. Here’s how you can avoid getting duplicated contents on your blog.

  17. Wordpress ‘Page Redirect‘ template

    This template lets you specify a single URL as the page content, then as the page loads, the template automatically redirects the page to this new location, and that includes category or any tag pages you specify.

  18. Delicious Save Buttons

    Add badges that encourage people to bookmark your website or blog

  19. DesignFloat Buttons, Website & Blog Integration

    Give your website or blog visitors the option to submit your stories to Design Float and "Float" them

    <script type="text/javascript">submit_url = 'Your URL Here';</script><script type="text/javascript" src="http://www.designfloat.com/evb/button.php"></script>
        

    <script type="text/javascript">submit_url = 'Your URL Here';</script><script type="text/javascript" src="http://www.designfloat.com/evb2/button.php"></script>
        

    Read here for more.

  20. StumbleUpon Buttons & Tools

    Add a Stumble It! button to your site to make it easy for your visitors to submit your content to StumbleUpon.

  21. Dynamic Highlight Menu

    This allows you to theme/style and control the currently selected menu tab in CSS by adding a class="current" on it.

    <ul id="nav">
      <li<?php if ( is_home() || is_category() || is_archive() || is_search() || is_single() || is_date() ) { echo ' class="current"'; } ?>><a href="#">Gallery</a></li>
      <li<?php if ( is_page('about') ) { echo ' class="current"'; } ?>><a href="#">About</a></li>
      <li<?php if ( is_page('submit') ) { echo ' class="current"'; } ?>><a href="#">Submit</a></li>
    </ul>    

    Line 2:

    If Home, or Category, or Archive, or Search or Single page is selected, class="current" will be included in <li>

    Line 3,4:

    If Page with page slug about or submit is highlighted, class="current" is added.

    If you are looking at putting categories as menu tabs, here’s how to make the menu dynamic:

    <ul id="nav">
      <li<?php if ( is_category('css') ) { echo ' class="current"'; } ?>><a href="#">CSS</a></li>
      <li<?php if ( is_category(showcase) ) { echo ' class="current"'; } ?>><a href="#">Showcase</a></li>
    </ul>

    Line 2,3

    If category with category slug of css or showcase, class="current" is added.

  22. DZone Buttons

    Let your website’s users vote for our links on DZone without leaving your site.

    <script type="text/javascript">var dzone_url = '[url]';</script><script type="text/javascript">var dzone_title = '[title]';</script><script type="text/javascript">var dzone_blurb = '[description]';</script><script type="text/javascript">var dzone_style = '1';</script><script language="javascript" src="http://widgets.dzone.com/widgets/zoneit.js"></script>
        

    <script type="text/javascript">var dzone_url = '[url]';</script><script type="text/javascript">var dzone_title = '[title]';</script><script type="text/javascript">var dzone_blurb = '[description]';</script><script type="text/javascript">var dzone_style = '2';</script><script language="javascript" src="http://widgets.dzone.com/widgets/zoneit.js"></script>
        

    More on DZone Buttons, Tools and Widgets

  23. Reddit Buttons

    Similar to the rest, place a reddit button on your site to promote blog post.

    <script type='text/javascript'>reddit_url='[URL]'</script><script type='text/javascript'>reddit_title='[TITLE]'</script><script type="text/javascript" src="http://www.reddit.com/button.js?t=1"></script>

    <script type='text/javascript'>reddit_url='[URL]'</script><script type='text/javascript'>reddit_title='[TITLE]'</script><script type="text/javascript" src="http://www.reddit.com/button.js?t=2"></script>

    <script type='text/javascript'>reddit_url='[URL]'</script><script type='text/javascript'>reddit_title='[TITLE]'</script><script type="text/javascript" src="http://www.reddit.com/button.js?t=3"></script>

    Source.

  24. Archive that works

    Noura of Noupe.com shows various ways you can style your Wordpress Archive page. Techniques and guides includes:

    • Listing all Posts
    • Display monthly or Yearly Archive
    • Archives Ordered By Category

    Read this entry.

  25. Add Breadcrumbs to Your WordPress Blog

    Breadcrumb trails are a good supplementary navigation system that aid in site usability. This plugin allows you to add breadcrumbs to your theme.

  26. Landing Sites / Pages

    When visitors is referred to your site from a search engine, they are definitely looking for something specific – often they just roughly check the page they land on and then closes the window if what they are looking for isn’t there. Why not help them by showing them related posts to their search on your blog?

  27. WordPress Exploit Scanner

    This WordPress plugin searches the files on your site for a few known strings sometimes used by hackers, and lists them with code fragments taken from the files. It also makes a few checks of the database, looking at the active_plugins blog option, the comments table, and the posts table.

  28. Buy Me a Beer

    Allows your readers to donate money to you via PayPal. Not something new, but worth knowing.

  29. Display Feedburner Subscriber Count In Text

    How to display feedburner subscriber count in text instead of using chiklets.

  30. Notifixious – Notify Users via IM

    This plugin allows you to notify your readers on their Instant Messaging (AIM, MSN, GTalk, ICQ…), Email or SMS when you publish new posts.

  31. Installing Xampp and WordPress

    Guide to setup Xampp and run Wordpress locally on your machine. You can also install plugins, upgrade to the latest nightly and virtually anything else confident in the knowledge that if it goes wrong, there is no impact on your actual site.

  32. Create an Ajax-based Auto-completing Search Field

    Why not helping your visitors to find what they’re looking for on your blog, by using a cool auto-completion on your search field?

More Resources

Related Contents

Sponsors

Posted by hongkiat in Wordpress, Wordpress Tips Tricks , at 10.04.08

Tags: , , , ,

Comments

  1. Wendy October 4th, 2008

    Wow, this is cool, I can apply to one of my wordpress blog at school.

    Reply
  2. mmuurrllyy October 4th, 2008

    wow..great compilation HongKiat

    Reply
  3. Fachia October 4th, 2008

    I think it is a great compilation of very useful Wordpress tips tricks and hacks. Absolutely I’ll bookmark it in my browser.. thanks Hongkiat.. you are rawk…

    Reply
  4. David Coveney October 4th, 2008

    I suspect the most useful there, for a pro, is actually the lost password reset tool you mention at the bottom. We get quite a few new clients come to us because they’re locked out of a professionally developed blog. So long as you can get server access, this tool really helps you out.

    Paginated comments are also damn useful for busy, frequently commented on blogs.

    Reply
  5. Wakkos October 4th, 2008

    Compilation that helps, I found must of them useafull – didn’t know about the “Buy me a beer” thing, I liked it a lot xD -

    Reply
  6. Ramy October 4th, 2008

    Nice list. I like the “buy me a beer/coffee”-button, even though it’s just a simple donation.

    Reply
  7. Mayur October 4th, 2008

    what a nice post with amazing and new things :D
    Thanks

    Reply
  8. Noura Yehia October 4th, 2008

    Thank you for this wonderful post, there are couple of tricks i didn’t know about.
    Thanks for featuring my post among those great ones.

    Reply
  9. Avinash October 4th, 2008

    Thanks for including my post in the compilation,your compilations are really helpful.

    Reply
  10. Amrit Hallan - Content Writer October 5th, 2008

    One of the best lists of WP-hacks I’ve ever come across. This is the sort of stuff one can really use. Thanks!

    Reply
  11. Rahul October 5th, 2008

    Thanks for this gr8 list. Wordpress rocks.

    Reply
  12. Sascha Vogt October 5th, 2008

    Thank you for the comprehensive list. Allthough I prefer the Social Dropdown plugin for all that social-bookmarking stuff.

    Reply
  13. Sangesh October 5th, 2008

    Nice compilation of wp pluggin list. Well I like the “Buy me a beer/coffee” button. May be I could also use in sometime. :)

    Reply
  14. devSoft.Mobi October 5th, 2008

    Cool Wordpress Tips, Tricks and Hacks, some of them i didnt use yet, and will use to see the result, thank for share~

    Reply
  15. Livecrunch October 5th, 2008

    Amazing compilation of great things to do for wordpress. I just linked from my twitter @Livecrunch

    Thanks for sharing.

    Reply
  16. Totok Purwanta October 5th, 2008

    Woow, Nice article, thank’s for knowledge sharing.
    http;://170869.com

    Reply
  17. shyboy October 5th, 2008

    very cool article, i try your hacks now!

    Reply
  18. Endodontist October 5th, 2008

    Thank you for the nice tips list.

    Reply
  19. Calev October 5th, 2008

    Hey

    I am currently building an organizational blog (www.reut-blog.org) and found this really helpful – thank you

    Reply
  20. SEO/SEM blog October 5th, 2008

    Thanks for the great article. I found some really interesting plugins here i didnt know before and i will give them a try. Thx

    Reply
  21. Jiff Flipper October 5th, 2008

    I dunno guys, it all makes sense to me.

    Jiff
    http://www.privacy-center.ru.tc

    Reply
  22. Blograzy October 5th, 2008

    Thanks, i have been searching these for my blog. Most of your tips u had helped me. :) http://www.blograzy.com

    Reply
  23. Top Flash Websites October 6th, 2008

    Nice! I plan to add the Buy Me A “?” Donation plugin to my blog. Great list!

    Reply
  24. Salmen October 6th, 2008

    Great job

    Reply
  25. mkjones October 6th, 2008

    These are really nice. Cheers :) The pop urls rip off will come in handy.

    Reply
  26. bharadwaj October 6th, 2008

    Nice of you to include such a vast list. Thanks, you helped me make my blog better.

    Can somebody help me integrate a digg button? Does not seem to work with latest wordpress!!

    Reply
  27. Ari Rochmann October 6th, 2008

    This is awesome! I’m going to have to try this out on my blog, I didn’t even realize that you could do this much stuff to customize everything.

    The accordion sidebar would look great!

    Great resource, really :)

    Reply
  28. Saad October 6th, 2008

    Awesome list :) Thanks for sharing.

    Reply
  29. maverick October 6th, 2008

    wonderful and useful list :) thanks!

    Reply
  30. Harley Alexander October 6th, 2008

    Sweet list! It’s great to see my work in the list… Especially at #1!

    Reply
  31. michi October 6th, 2008

    Great list! I’ll try some of the tips here.

    Reply
  32. Kelly October 7th, 2008

    Anyone here know how this site: http://timothysykes.com/ made those slides on the main homepage (top center) – is that a wordpress plugin? Anyone?

    Reply
  33. Keith October 7th, 2008

    Great 30 Wordpress tricks! Some of them might be not-so-useful, but I suppose they can be still be utilised these days. More of tweaks rather than hacks :)

    Reply
  34. mobiles October 7th, 2008

    I personally like the AJAX based auto-complete search field one…I love this functionality since the time Google added it to Google Suggest.

    I appreciate your efforts in compiling this list.

    Reply
  35. web October 7th, 2008

    A worth read for anybody who’s using Wordpress. Definitely.

    Reply
  36. Jay October 7th, 2008

    Thanks, these are some really great tips and tricks that I will be sure to use on my blog.

    Reply
  37. Rishi October 9th, 2008

    Ah just finished my first wordpress site, wished i stumbled across this sooner! great tips, will have to back and make good use of these.

    Thanks

    Reply
  38. miccy October 9th, 2008

    Thanks mate, this wordpress tweaks are really useful for my blog http://www.japanesegravureidol.net hope u can post more :p

    Reply
  39. JarodYv October 10th, 2008

    It’s greatly useful! Thank you!

    Reply
  40. Office Rental Space October 14th, 2008

    The Random Redirector and The Highlighter syntax are the 2 tools I use in my own blogs. Those coupled with some of the other tools you discussed really aid not only in pushing blogs, but in easing the use of wordpress in general. Thank you for posting this: It’s a wealth of useful information for all of us. Take care.

    Reply
  41. athkaserve October 15th, 2008

    nice

    Reply
  42. Daniel Dumas :: Mr Night Man October 19th, 2008

    amazing tools man thanks alot for this! :)

    Reply
  43. Evan October 22nd, 2008

    It is really helpful…. thanks

    Reply
  44. Wordpress Tips November 3rd, 2008

    it is helped me

    Reply
  45. DemoGeek November 19th, 2008

    Nice list of tips for Wordpress…I was looking for the tabbed sidebar thing and I’m going try with your tip.

    Reply
  46. Bayuy November 19th, 2008

    great tips hongkiat, im now using the wordpress templates, and i like to test those sidebar also..thanks!

    Reply
  47. KINGS YOUNG November 22nd, 2008

    i tryed to do the Display Feedburner Subscriber Count In Text

    How to display feedburner subscriber count in text instead of using chiklets.

    but no go for it wont work ?

    Reply
  48. Addy November 30th, 2008

    hoho It is really helpful..thanks :)

    Reply
  49. Addy December 1st, 2008

    Buy me a coffee not beer
    hahaaa..

    Reply
  50. Andrey December 13th, 2008

    Thanx

    Reply
  51. Andrew Jones December 17th, 2008

    The Google Syntax Highlighter is actually nothing to do with Google, just hosted on Googe Code (like many other open source projects).

    Apart from that, useful post :)

    Reply
  52. 生活健康网 December 17th, 2008

    ^_^欢迎访问我的小站。生活健康网的小站

    Reply
  53. Offshore Website Development January 24th, 2009

    Thanx for sharing these amazing tips and tricks :).

    Reply
  54. Jamiel Sharief January 28th, 2009

    Excellent, I have digged it! Also is the Spread (promote) this post a plugin available to all, or is that something you put together your website ? Its really nice.

    Reply
  55. apple510 February 6th, 2009

    Rs2server.com is a professional company.Selling runescape gold(also called rs gold,rs money,rs gp),runescape item,runescape powerleveling,and doing the rs member quest or free quest,Buying or Selling runescape account

    Reply
  56. Eleonora February 8th, 2009

    Your blog is super. So are your photographies. They make me hungry. I have spent a nice moment when seeing them. Thanks a lot.

    Reply
  57. Yuli Andriansyah February 14th, 2009

    Thanks for tips. Helpfull……..

    Reply
  58. Johar February 18th, 2009

    Perfect tips and artikel thanks

    Reply
  59. jaehdoe March 2nd, 2009

    Thanks for tips!

    Reply
  60. Ben March 9th, 2009

    Great List
    Thanks

    Reply
  61. ozzie March 11th, 2009

    Thanks for the post. I just purchased a couple domain names and looking for a host for my 1st blog. There is a ton of information out there. I’m definitely going with WP, anybody have suggestions on a good website to refer to as a beginner? Thanks in advance!

    Reply
  62. edi April 11th, 2009

    Useful tips. Thx

    Reply
  63. Andrej April 13th, 2009

    Very amazing tips , thx :D . Love it

    Reply
  64. Paris Koutroumanos April 20th, 2009

    Thanks. Very nice Tips

    Reply
  65. Harsh Agrawal April 23rd, 2009

    Thanks for great tips man

    Reply
  66. Dev April 29th, 2009

    Very good tips and certainly will be using these tips on the next blog I setup. If mod allows, I would like to recommend usage of excerpts. It is by far the best method I have discovered/tweaked to avoid duplication of content. Use excerpts for all but for Single Post pages using this simple code ..

    <div class=”entrybody”>
    <?php if (is_singular()) : ?>
    <?php the_content(); ?>
    <?php else : ?>
    <?php the_excerpt(); _e(’<p><a href=”‘.get_permalink().’”>
    Continue reading about ‘); the_title(); _e(’</a></p>’); ?>
    <?php the_tags( ‘<p>Tags: ‘, ‘, ‘, ‘</p>’); ?>
    <?php endif; ?>
    </div>

    This ensures that no matter what page you see, you will see only the excerpts. You will see the complete post only on Single Post pages.

    Dev.

    Reply
  67. NenaBuena May 6th, 2009

    great article! I will use advices in my blog, thank you!

    Reply
  68. Franz König May 7th, 2009

    nice articel – i should try the tabs…

    Reply
  69. AboutTricks.com May 21st, 2009

    wow .. it’s really nice thanks for the great tips

    Reply
  70. V.C May 26th, 2009

    Thank for this tips. It’s very informative.
    I was wondering if you can show us all plugins that you use :)

    Reply
  71. Jad May 28th, 2009

    really great collection :D

    Reply
  72. V.C June 5th, 2009

    I tried to add tab on sidebar but it was no point.

    Reply

Trackbacks

  1. CosaArnada » Blog Archive » Most Used Wordpress Tricks and Hacks
  2. 30+ Most Wanted Wordpress Tips, Tricks and Hacks — hibilog 2008
  3. pookle » Blog Archive » 30+ Most Wanted Wordpress Tips, Tricks and Hacks
  4. The Boar’s Head Tavern
  5. [root@EGA]# » Blog Archive » links - 20081004
  6. Bookmarks for October 5th • Blog Archive • noahcarter . com
  7. me0wster’s Dreamland » Blog Archive » Blogging Needs..
  8. Más de 30 trucos para tu Wordpress | aNieto2K
  9. Wordpress 120: Top 30+ Wordpress tips and tricks « Wondering & Pondering’s Weblog
  10. Wordpress - 30+ Tips berguna « ARUSBAIT
  11. 30 trucos para tu blog en wordpress | Sicrono
  12. Ethan’s Blog » Blog Archive » Lazy Sunday
  13. www.ntopics.com
  14. 30 More WordPress Tips :: WPLover
  15. links for 2008-10-05 at DeStructUred Blog
  16. Through the LCD clearly » Blog Archive » Quick links
  17. Wordpress Tips, Tricks and Hacks | Web Hosting Group
  18. 30+个非常有用的WordPress技巧(一) | 小墨|博客
  19. Mas de 30 trucos, consejos y otras cosas para WordPress » Cosas sencillas
  20. Chat Marchet News Digest » 30+ Most Wanted Wordpress Tips, Tricks and Hacks
  21. WordPress al día: lista de recursos » blogpocket 7.0
  22. 30 hacks para Wordpress | Blogs Bazaar
  23. Bookmarks for October 1st through October 6th
  24. Tommy k Johanssons blogg om datorer & Internet
  25. Attractive Numbers - Seitentitel optimieren | Webworking Blog
  26. HackWordPress.com | CNET.ro
  27. Wordpress features
  28. links for 2008-10-07 | /dev/random
  29. More WP hacks « 0ddn1x: tricks with *nix
  30. links for 2008-10-07 « Mike’s Blog
  31. Daily Links | AndySowards.com :: Professional Web Design, Development, Programming, Hacks, Downloads, Math and being a Web 2.0 Hipster?
  32. 70+ tips y trucos para Wordpress | frogx.three
  33. [i:rrhoblog] » links for 2008-10-08
  34. Bookmark dal 30 Settembre 2008 al 7 Ottobre 2008 » Ubuntu block notes
  35. Más de 30 hacks para WordPress » blogpocket 7.0
  36. 70 Tips y Trucos Para Wordpress | XKOD
  37. Otra tarde apacible, y de blog-lectura. | Árbol de los Mil Nombres.
  38. aktuelle Infos 2008-10-09 : VitoNet
  39. tanketom.net » Surfefunn: links for 2008-10-05
  40. blognetwerk.net
  41. Tips y Trucos Para Wordpress | Blog ZonaKaoz
  42. 30+ Most Wanted Wordpress Tips, Tricks and Hacks « Outofbound’s Weblog
  43. AKA Riptide Furse » My del.icio.us bookmarks for October 9th through October 10th
  44. BlogBuzz October 11, 2008 | Webmaster-Source
  45. Speedlinking da Semana [05 a 11 Out] - 2.0 WEBMANIA - Portugal, a Web 2.0, o Mundo e a Internet
  46. (Anti) Social-Lists - 10/12/08 | (Anti) Social Development
  47. Links about Wordpress | Some things will never change
  48. EggFire Inc » Blog Archive » 30 Most Wanted Wordpress Tips, Tricks and Hacks
  49. 30 trucos para Wordpress - Boombolic
  50. Mascot » Blog Archive » 30+ Most Wanted Wordpress Tips, Tricks and Hacks
  51. News And Links For Me | Butterfly Media Romania Blog - Marketing, SEO and WordPress
  52. » The Best of What’s Around,#1 The 2.0 Life: Become a Web Ninja
  53. Tutto Games » 27 trucchi per Wordpress!
  54. 21 Most Wanted And Essential Resources Specially If You Are Developer - Opensource, Free and Useful Online Resources for Designers and Developers
  55. Links: Recopilación Twitter v3 - kcxlife.net
  56. 20+ plugin per Wordpress e non solo | Area3000
  57. LZ « Squealing Rat
  58. pligg.com
  59. 30+ Most Wanted Wordpress Tips, Tricks and Hacks « World News
  60. Best Of Design - October :: Elite By Design
  61. 21 Most Useful Free Resources For Designers And Web Developers | SulVision
  62. 35 Tips Tricks To Manage and Handle Multi-Author Blogs | Wordpress
  63. J’s blog » Blog Archive » Much delayed catchup blogging…
  64. 35 Tips Tricks To Manage and Handle Multi-Author Blogs
  65. نکته ها ، مقالات و ابزارهای وبلاگ (66 لینک) « لینکهای داغ از سراسر وب
  66. Knowing Nothing v2.5
  67. 本年度75套最佳Web设计资源 - 刀客征途
  68. Universal Serial Blog » Lista de los 75 mejores recursos para diseño del 2008.
  69. tmtbox media | Top 75 Best Design Resources of 2008
  70. COFFEE CUP||咖啡杯 » Top 75 Best Design Resources of 2008
  71. 2008年75套最佳Web设计资源大汇总 - 菠菜博
  72. 2008 Most Popular Design posts, Tutorials and Resources
  73. 本年度75套最佳Web设计资源 : 学习与偏见
  74. :::东文设计::: » Blog Archive » 2008年75套最佳Web设计资源大汇总
  75. » 界面设计最佳资源总汇 程子清的生活
  76. 蓝色骑兵 » Archive » 2008年Web设计资源汇总
  77. 2008年75个最佳Web设计资源 - 怀念1997年的秋天 - 个人生活心得,工作感悟,wordpress技术交流,空间模板支持 - Powe
  78. 75个最佳Web设计资源 « Beenono’s nest
  79. RSSA频道 » Blog Archive » 2008年75个最佳Web设计资源
  80. 2008 Most Popular Design posts, Tutorials and Resources | Web Hosting and Domains
  81. 2008 Most Popular Design posts, Tutorials and Resources | SulVision
  82. 2008年度75套最佳Web设计资源
  83. 2008年国外最佳Web设计/开发技巧、脚本及资源总结 : 大白兔爱小萝卜 TAHETA.ORG
  84. 不错的Web开发设计文章、教程及资源 | __3.28 ” - 关注互联网,网络资源共享ING……
  85. Extend and Enhance your WordPress
  86. Have to say » Blog Archive » 75个最佳Web设计资源
  87. SuperJavaSon » 2008年国外最佳Web设计/开发技巧、脚本及资源总结
  88. AMB Album » 2008 Most Popular Design posts, Tutorials and Resources
  89. 網頁設計資源大合集 | 時間不等於金錢
  90. نکته ها ، مقالات و ابزارهای وبلاگ (66 لینک) | night media
  91. 翔之道 » 【推荐】2008年度最佳网页设计资源【N多】
  92. 永不弃垒… » Blog Archive » 转载-cnbeta 2008年国外最佳Web设计/开发技巧、脚本及资源总结
  93. 2008年75个最佳Web设计资源 | 网站设计&网站设计公司
  94. ..whose turn? » Blog Archive » 2008年国外最佳Web设计/开发技巧、脚本及资源总结
  95. wordpress實用技巧40招 | 時間不等於金錢
  96. 75套最佳Web设计资源 | 笨猫的窝
  97. 75套最佳Web设计资源 | 笨猫的窝
  98. wpressd.com
  99. 2008年国外web资源素材帖集锦 | ITer
  100. Best of 2008 for developers: 2008+ tips, tricks, scripts and sources! | 赫伯特.皮特
  101. 08年度75套最佳Web设计资源 » BCTELL 加拿大移民生活
  102. 2008年国外web资源素材帖集锦 | 首席技术官网
  103. 我想网 » Blog Archive » 75个最佳Web设计资源
  104. Most Wanted Wordpress Tips, Tricks and Hacks « Online Free Applications Software Tips Tools Wallpapers
  105. wordpress实用技巧41则,附相应插件下载 - Jan Design Studio - Jan 设计工作室
  106. 50+wordpress实用资源汇总 | 博译论 | 分享网络热门与新知 关注网络应用与营销
  107. Wordpress | ONEDUST - 浮塵草堂
  108. WordPress.com « HollyJ’s Blog
  109. All my bookmarks ever | Daniel John Gayle
  110. GNULife.CN » 国外一些优秀的前端开发相关的教程、技巧、脚本、实例及工具资源 - 自由软件
  111. Word Press Tips « dksarahjane’s Blog
  112. 75个最佳Web设计资源 « Dave勇气吧
  113. Hacking WordPress (In a Good Way!) | theWPresser
  114. Mais de 70 tips e tucos para Wordpress | AlyenStudio, creando sua imagem !

Leave a reply