Recently Added

Job Listings WordPress Theme

Posted by admin in Premium WP Templates on 08. Jun, 2010 | 2 Comments

You can run a job listings site with WordPress using this theme. PS: I have also release a Job Site Whole Site Package for download for free. It contains all the files, database and set up data. You just need to upload them onto your server, then you can see your job site running. Please [...]

ShowCase Mag WordPress Premium Theme

Posted by admin in Premium WP Templates on 02. Jun, 2010 | No Comments

This theme is good for any niche sites. It is especial good for magazine, gallery, portfolio sites, where you show case your work. Demo: http://demo.ipandadesign.com/photography/ Features: XHTML validated stylish dark design, good for many niche Social Bookmarks (Facebook, Twitter, Feedburner) with backend options Automatic Thumbnail Resizer (with or w/o using a custom field) System build-in [...]

starringBlue WordPress Theme

Posted by admin in Neat WP Templates on 01. Jun, 2010 | 4 Comments

A neat theme with unique design, good for each niche. Demo: http://demo.sumsy.com/?wptheme=starringBlue – FEATURES – * Dynamically resize thumbnail * randomized default thumbnail for post w/o a thumbnail * WP125 ad plugin intergrated * 2 columns with sidebar. * Fixed width. * RSS ready. * Widget ready. * Gravatar ready. * Tableless design. * Valid [...]

WordPress: customize the excerpt

Posted by admin in Blog on 31. May, 2010 | No Comments

With the following codes, you can remove the tags and trailing dots from excerpt. You can also specified how many characters you want the excerpt has before it is cut off. function ipanda_excerpt($excerpt, $substr=0) { $string = strip_tags(str_replace('[...]', '...', $excerpt)); if ($substr>0) { $string = substr($string, 0, $substr); } return $string; } You can use [...]