| bio | website | monkeyman.be |
|---|---|---|
| location | Belgium | |
| age | 28 | |
| visits | member for | 2 years, 9 months |
| seen | May 12 at 15:40 | |
| stats | profile views | 1,184 |
I am a freelance developer, mostly web-based stuff. I don't like to re-invent the wheel, so I try to re-use existing components and focus on the problem-specific part. WordPress fits nicely into this picture, especially if you understand the inner structure.
You can contact me at [firstname.lastname] [at] monkeyman.be.
In addition to the standard Creative Commons license of this site, I give permission to use all my contributions under the GPL license (version 2). Feel free to re-use it in plugins, themes, or in the Codex.
|
May 17 |
awarded | Enlightened |
|
May 17 |
awarded | Nice Answer |
|
May 12 |
comment |
How do I customise the new user welcome email @ZachL: wp_new_user_notification() does both: it first sends the mail to the admin, then to the user. |
|
May 3 |
awarded | Nice Question |
|
Apr 16 |
awarded | Good Answer |
|
Apr 11 |
awarded | Popular Question |
|
Apr 3 |
awarded | Nice Answer |
|
Feb 15 |
awarded | Popular Question |
|
Feb 7 |
awarded | Enlightened |
|
Feb 7 |
awarded | Nice Answer |
|
Jan 28 |
awarded | Popular Question |
|
Jan 24 |
awarded | Nice Answer |
|
Jan 13 |
comment |
Making a plugin file accessible via url rewrite? @noobcode: If you use this in a theme, you place it in functions.php. If you use it in a plugin, you place it in the plugin code. |
|
Jan 11 |
awarded | Notable Question |
|
Dec 5 |
awarded | Popular Question |
|
Nov 6 |
comment |
WP_Query with “post_title LIKE 'something%'”? @kaiser: It's been a long time, but I think this was not possible with prepare(). $wpdb->prepare('LIKE "%s%%"', 'banana') would return "LIKE ''banana'%'", so we have to construct the query ourselves, and do the escaping too. |
|
Sep 24 |
awarded | Revival |
|
Sep 21 |
awarded | Custodian |
|
Sep 21 |
awarded | Notable Question |
|
Sep 13 |
comment |
Help with Wordpress custom url rewriting? @Anand: You use my line instead of $newrules['data-page/data_id/([0-9]{1,})/?$'] = 'index.php?data_id=$matches[1]'; in the original code. |