| bio | website | moraleida.me |
|---|---|---|
| location | Rio de Janeiro, Brazil | |
| age | 29 | |
| visits | member for | 1 year, 9 months |
| seen | yesterday | |
| stats | profile views | 75 |
/**
* Handyman Developer - WordPress Enthusiast
* Website: http://moraleida.me
* Email: ricardo [ at ] moraleida.me
* Tweet me @moraleida
*
*
*/
|
May 17 |
answered | WP_Query pagination using only numbers instead of /page/1 on URL |
|
May 16 |
asked | WP_Query pagination using only numbers instead of /page/1 on URL |
|
May 15 |
answered | Need to do blank search. |
|
May 15 |
comment |
Implode Taxonomy to hide parents? Cool... if it worked for you, then please accept the answer :) -- by the way, use backticks instead of <code> to show code in comments. :) |
|
May 15 |
comment |
WP_Query not working as expected for attachments and custom meta_query following @m0r7if3r: what happens if you change BINARY to NUMERIC ? |
|
May 15 |
comment |
Implode Taxonomy to hide parents? That error means there's something missing before the endwhile; statement. Check if you have every parenthesis, brackets and semicolons in place.
Also consider moving your code to an IDE (like NetBeans or Eclipse) or a better text editor (such as Notepad++). That will help you find out where your syntax errors are. |
|
May 15 |
awarded | Citizen Patrol |
|
May 15 |
comment |
How to remove entire admin menu? I'm curious. If your users don't need access to any of the admin menu items, why do they need access to the dashboard at all? |
|
May 14 |
comment |
Implode Taxonomy to hide parents? my code was missing a pair of parethesis on the empty check, sorry about that. I've updated the example. |
|
May 14 |
revised |
Implode Taxonomy to hide parents? added 1 characters in body |
|
May 14 |
revised |
Implode Taxonomy to hide parents? added 151 characters in body |
|
May 14 |
answered | Implode Taxonomy to hide parents? |
|
May 14 |
comment |
How to get posts published between a date and today? Not really. query_posts should be used only to alter the main loop - and a lot of people argue that not even then (there's the pre_get_posts filter for that too). I often find myself using only WP_Query or get_posts for all my queries as they're standalone and can be used multiple times w/o interfering with anything else. Check the linked answers on your comments for a thorough explanation. :) |
|
May 14 |
comment |
How to get posts published between a date and today? just added your current query, so you can ditch query_posts right away. :) And thanks @StephenHarris for the quick update! |
|
May 14 |
revised |
How to get posts published between a date and today? further code to exemplify |
|
May 14 |
comment |
How to get posts published between a date and today? Don't use query_posts(). Check this -> wordpress.stackexchange.com/a/1755/7890 |
|
May 14 |
answered | How to get posts published between a date and today? |
|
Apr 13 |
answered | How to show different widgets on different pages in a user friendly way |
|
Apr 12 |
comment |
Check for update vs new post on save_post action True, just checked it in the Codex. Thanks for the heads-up. |
|
Apr 12 |
revised |
Add text to metabox input text field from Thickbox proper code block |