3,335 reputation
724
bio website sixohthree.com
location New Hampshire
age 30
visits member for 2 years, 9 months
seen 22 hours ago
stats profile views 166

I'm the maintainer of one plugin in the official repository: "Who's Online", which is a great fit for the P2 theme.


Jan
21
answered Rewrite of URL with '[' ']' or '(' ')' as literals
Jan
20
answered $post->ID and the_id() always return the wrong value
Jan
9
answered Has anyone managed to integrate the wp_editor inside a widget?
Nov
19
awarded  Nice Answer
Nov
9
comment what is the way to see the currently executing query in wordpress?
Not that I would discourage getting to know the internals, but this hints at another question whose answer would be very different. What problem are you trying to solve?
Nov
9
answered what is the way to see the currently executing query in wordpress?
Nov
4
comment How to upload files straight to S3 without using local storage?
@tarasm I believe pre_option_upload_url_path is the important filter for the download path.
Nov
4
answered How to upload files straight to S3 without using local storage?
Nov
4
comment How to upload files straight to S3 without using local storage?
Last time I looked at tantan-s3, it stored uploads locally, only mirroring them to Amazon S3.
Nov
4
revised How to upload files straight to S3 without using local storage?
edited body
Nov
4
comment How to upload files straight to S3 without using local storage?
In lieu of a full reply, which I can't leave at the moment: Saving WordPress Media to Amazon S3 (Teaser)
Nov
1
revised Displaying additional User Contact Information
Code highlighting
Oct
27
answered How to edit footer content
Oct
27
revised How to edit footer content
added 2 characters in body
Oct
27
revised Sharding BLOGUPLOADDIR
Editing is fun.
Oct
27
answered Sharding BLOGUPLOADDIR
Oct
25
comment How To View Site from Non-Logged-In User's Perspective
Google Incognito Window is indispensable. Open IW for a fresh session, close it and reopen to clear the cookies and start over again.
Oct
20
comment How to: Easily Move a WordPress Install from Development to Production?
@jfklein I'm almost always working with a WordPress Network, which is incompatible with these constants.
Oct
17
comment Change attachment filename
This breaks WordPress's link to the file, since WordPress won't understand that a rename has happened.
Oct
16
comment Overriding The Loop with filter or hook
pre_get_posts is an action (do_action_ref_array()), and $query is passed by reference, so $query doesn't need to be returned. Good point, regarding the combined if.