Ok, This might be the most useful function I’ve ever used for debugging WordPress. This will help out tremendously when you have some ghost tags that you don’t know where it comes from. The idea here is to go through each function in a hook, and find out where that function is. That way, you… Continue reading Find What and Where are Each Function in a WordPress Hook (What File & Line)
Category: Coding
Simple URL Shortcodes for WordPress
Doing web development on testing servers is a common practice. Many of these servers have addresses that are an ip address with a user name. For example, these development addresses can be something like: http://12.34.56.789/~username/ The problem with this is that it throws off your relative URL structure. You can use /page because it will… Continue reading Simple URL Shortcodes for WordPress
Where are the decent code editors?!
I like to make sure that my code is nicely indented and formatted. There are many places that do this ok, but there are no places that do this perfect. The box below is my attempt to make a decent code editor that take any type of code and formats it properly, and spaces it… Continue reading Where are the decent code editors?!