Tag: filters

Extending WordPress Plug-ins

January 2, 2016

No Comments

Topics: Web Development, WordPress.

Awesome WordPress plug-ins are built making extensive use of awesome core WordPress tools: filters and actions. My own plug-ins are no exceptions. But the fact that I’ve used the awesome power of filters and actions in my plug-ins doesn’t automatically mean that you know how to use and implement them. There are some great tutorials available on how to use WordPress actions and filters (or hooks, as they’re known collectively): Learning to use WordPress hooks from Elegant Themes The Complete […]

Continue reading “Extending WordPress Plug-ins” »

Using custom template tags with WP to Twitter

June 13, 2013

No Comments

Topics: Web Development, WordPress.

Yesterday, I received a support request asking about how somebody could parse a URL out of their post title and post that as the shortened URL attached to their Tweet. They always used the same format to add the URL — <a href="http://thedomain.com">The Title</a>. Well. Not a standard use, certainly — but it is something that you can do using WP to Twitter, with a little custom code. So this is a good time to write up the custom template […]

Continue reading “Using custom template tags with WP to Twitter” »