| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 1 month |
| seen | Apr 23 at 21:02 | |
| stats | profile views | 6 |
|
Mar 29 |
comment |
How can one utilize a variable as a callback function name for add_settings_field so, you're saying the callback is the same for every setting? wow. i feel like a chump. why didn't i think of that. thanks! |
|
Mar 27 |
comment |
Settings API - save multiple tabs at once Thanks! got it working. The issue is that wasn't declaring the global variable within the callback function. |
|
Mar 27 |
comment |
Settings API - save multiple tabs at once fair enough! ;) I've edited the question with more details and abbreviated code. thanks again for taking the time to look at this. |
|
Mar 26 |
comment |
Settings API - save multiple tabs at once Thanks for the help! I'm close but not sure how to integrate this with displaying and submitting the options with my current code. So far, just getting blank defaults on my theme options page. Do you have a full-working example I could take a look at? |
|
Mar 26 |
comment |
Settings API - save multiple tabs at once ok, trying to implement this and I think it makes sense. I'm a little confused though. On returning their values, -- // Get options global $wpse92323_options; $wpse92323_options = wpse92323_get_options(); -- Why do I need to declare that $wpse92323_options is global a second time? |
|
Jul 16 |
comment |
Disable visual editor on one specific page yep. brilliant! thank you |
|
May 15 |
comment |
How to make wordpress URLS google friendly for ajax driven sites? also, if using PJAX, can we also use the hash-bang? |
|
May 15 |
comment |
How to make wordpress URLS google friendly for ajax driven sites? @Christopher and @ userabuser ok, Im trying to wrap my head around the PJAX method of doing this. My assignment was to do the escaped_fragment method because that is what google recommends, so I'd still like to know if wordpress can dynamically generate this type of permalink (ideally to avoid a 301 or a 302 -because there is so much conflicting information about all of this out there) |
|
May 15 |
comment |
How to make wordpress URLS google friendly for ajax driven sites? I guess the concern is, will this index the non-fancy pages, and force us to use a redirect for each wordpress built page, which forces search engines to throw up a red flag? |
|
May 11 |
comment |
How do you remove plugin edit option? That did it! Awesome. However, due to the version control setup we have, I would still prefer to do it within the theme functions. And the good news is, you can put this code there instead, and it still works! Merci! |
|
May 9 |
comment |
How to cache json with wp-super cache I wish they had the option to cache json specifically, or other data types. So many options and yet not the one we needed for this project. But, this is a cool workaround. I'll give it a try. |
|
Apr 30 |
comment |
Create a 'single' page for a Custom Post Type cool. I changed the code in my theme to reflect this new method for outputting custom post types. thanks for the heads up |
|
Apr 27 |
comment |
Create a 'single' page for a Custom Post Type can you explain why it is bad practice? |
|
Apr 24 |
comment |
A way to change image urls in post to cdn image url? not sure if you figured this out, but Here is an alternate plugin to check out: wordpress.org/extend/plugins/cdn-sync-tool that is to be used in tandem with wordpress.org/extend/plugins/wp-super-cache |
|
Apr 20 |
comment |
A way to change image urls in post to cdn image url? that is an lol. the plugin adds jquery again, which is unnecessary and jqueryui, which you may be already running. i had to remove the enqueuing on it because it was causing issues. you can comment out those lines in cdnr.class.php - not sure if that is what is causing your issue though.. |
|
Apr 20 |
comment |
A way to change image urls in post to cdn image url? maybe look at the code in the plugin and see if you can digest it into your theme. it is pretty straightforward plugin |