WordPress: customize the excerpt

WordPress: customize the excerpt

Posted by admin in Blog on 31. May, 2010 | 0 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 [...]

WordPress Jobs Site Download

WordPress Jobs Site Download

Posted by admin in Web Sites on 02. May, 2010 | 2 Comments

I have developed a job site for my latest project. I use WordPress as framework. And then add in appropriate plug-ins. Twisted them together and add in some custom functions. You can see the site in action here: http://demo.ipandadesign.com/jobs/ Features: Users can submit job listings. User can edit job listings. User can upload company logo. [...]