In this post I will describe the steps to take to create a setup for WordPress multiple sites on different domains. What I mean is that if you want to have only one installation of WordPress for managing multiple websites/blogs, each with its own different content and different domain this is the post for you. At...
Tag: advanced
Javascript functions this, that and the other
Javascript functions this reference When working with Javascript functions this refers the current object, which depends on the context of the function. For example if you have a top level function, then this references window, if the function is defined in an object, then this will reference the object instance, while if the function implements an event handler,...
Custom HTML Tags Example – How to Create a HTML Custom tag for Adding a Gravatar Picture
What is a Custom HTML Tag? A custom HTML tag is a tag that is not part of the standard set of HTML tags. What is cool is that you can instruct the browser to recognize and display custom HTML tags. Let’s see how. Can You Create Your Own Tags in HTML? When using HTML...