How To Automatically Make URL Clickable on WordPress

There are a time we need to put some URL on our WordPress content and make this content clickable. We need to added the link manually or using WYSIWG menu. And this is real pain if we must do this each time we add URL.

Did you know that, WordPress offering functions to make this pain jobs more easier? All need to do is activated the function and let’s WordPress do all the pain jobs ;) The Functions is make_clickable() and you can find out more here http://codex.wordpress.org/Function_Reference/make_clickable. Continue reading “How To Automatically Make URL Clickable on WordPress”

Non delivery report

In the internet’s standard e-mail protocol SMTP, a bounce message, also called a Non-Delivery Report/Receipt (NDR), a (failed) Delivery Status Notification (DSN) message, a Non-Delivery Notification (NDN) or simply a bounce, is an automated electronic mail message from a mail system informing the sender of another message about a delivery problem. The original message is said to have bounced. Continue reading “Non delivery report”

Closure Compiler

What is the Closure Compiler?

The Closure Compiler is a tool for making JavaScript download and run faster. It is a true compiler for JavaScript. Instead of compiling from a source language to machine code, it compiles from JavaScript to better JavaScript. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what’s left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls. Continue reading “Closure Compiler”

php wordbreak

This is a useful script for anybody who wishes to get the beginning of a string up to the word break before $num of characters. Usually the use of substr will break half way through a word and leave things looking a little untidy on your site. This little function allows you to set the maximum length of the string, then it returns all the whole words before it. If the supplied string is shorter than the maximum length, the whole string is returned. Continue reading “php wordbreak”

Get All URLs From Page

Ever needed to get all the urls from a string or a web page? No? Well, here is a script that will do it anyway. Basically it works on grabbbing anything beginning with http, or https, up to the next double comma ” or a space. The results are then returned in an array where you can extract them for your use. If you find a better regex to do this, let me know and we will use it. Continue reading “Get All URLs From Page”