This 10 Useful WordPress functions will certainly reduce your WordPress development time.I found this functions when i do some research for my projects. So i think i better share this with you. 1.Custom Excerpt Length By default, excerpt length is set to 55 words. To change excerpt length using excerpt_length filter, add the following code […]
8 useful PHP code snippets for developers
Today, i want to share you some useful PHP code snippets which may reduce your development time. 1.Send HTML Mail [php] <?php $to = "[email protected]"; $subject = "This is my test html email send using php mail function"; $body = "Body of your message here you can use HTML too. <br /> <h1> Header </h1> […]