303 reputation
26
bio website kevinleary.net
location Boston, MA
age 27
visits member for 2 years, 6 months
seen May 9 at 16:20
stats profile views 20

I'm a WordPress web designer, developer & specialist. Visit my portfolio online at kevinleary.net or have a conversion with me on Twitter. I spend my days working with WordPress at OpenView Venture Partners as Interaction Designer.


Oct
10
comment WP_Query Performance Issues with meta_query
Thanks Anu, I've found that the OR relation operator was the culprit. The query went from 35.76 seconds to 2.18 just by switching that to AND.
Jul
31
comment Setting posts per page in query_posts
By adding onto the existing query vars we aren't rewriting anything. This is like saying: "Give me your settings, I'm going to change one value, then reset them." before running the query.
Feb
22
comment How to know what functions are hooked to an action/filter?
Great little function toscho, thanks for sharing this. I'm using it to evaluate all of the action hooks loaded for a theme at the shutdown action.
Nov
7
comment Why is WordPress WYSIWYMG and how do I make it WYSIWYG?
Also, be cautious when removing these filters. They can cause some issues with output but also do wonders for formatting content. For more info refer to this article in the codex: codex.wordpress.org/How_WordPress_Processes_Post_Content
Nov
7
comment Why is WordPress WYSIWYMG and how do I make it WYSIWYG?
If you mean the functions.php file you can do it 2 ways: FTP into your WordPress site and browse to "wp-content/themes/{theme-name}/functions.php". Open and edit that file. Another way is using the Theme editor in WordPress, which is at my.wordpresssite.com/wp-admin/theme-editor.php. From there opne the "Theme Functions" file and add the code there.