Tutorials

These are tutorials for Wordpress. A more detailed description is coming soon.

The Simplest WordPress URL Shortener Ever

Post Image for The Simplest Wordpress URL Shortener Ever

As the WordPress Universe becomes more and more “twitterfied”, URL shorteners become more and more relevant. Its important to present links to your post in a fashion that are easy to share. You can use dependable services like bit.ly or goo.gl. You can also create your own URL shortener using YOURLS. However, if you have a short domain name – such as http://themebig.com – there ...

Read More!

How to Create a WordPress Function

functions

I’ve seen a ton of tutorials for creating WordPress functions. The thing is, most of them are over-complicated garbage that are really only understandable to people who already know how to write functions. What’s the point in that? Let me show you a simple 4 step process to get this crap under control. What is a WordPress Function? Actually, functions aren’t anything unique to WordPress. ...

Read More!

Create An HTML Link

link

Creating html links, known as “hyperlinks”, is one of the most basic elements of web design. It is extremely simple. Just use the basic code below and fill in the link URL and the text of your link in the indicated: <a href=”[ LINK URL ]“>[ LINK TEXT ]</a>

Read More!