Tagged Questions
0
votes
3answers
155 views
Updating wp_options with an array on save_post results in duplicated entries
I'm not entirely sure this is Wordpress' fault, but I figure I'd ask anyway and see if anyone else has experienced any problems like this before.
I'm trying to save an array to a wp_options table ...
0
votes
1answer
344 views
Wordpress Plugin Dev: Using array for WP options
I am busy dabbling with writing a WP plugin and hitting a bit of a problem.
I believe its best practice to store wp options to an array rather than individually which is great no probs.
I have two ...
1
vote
1answer
927 views
Working with an Array inside Your Theme Options Array - Multiple Values
I apologize if this is covered extensively elsewhere, I'm not sure how to phrase my searches on the topic.
Basically, instead of the following standard code to store data in WP-options...
$options = ...
0
votes
1answer
424 views
Decontruct serialized data array from wp_options
I'm trying to decontruct (and recreate) a serialized option value in wp_options called 'my_options'
How would I build the array to recreate this option_value that currently exists for 'my_options'?
...
0
votes
1answer
724 views
How do I retrieve multiple values from a multidimensional array in wp_options?
I'm just starting to store data in multi-dimensional arrays in wp_options and I need some help to retrieve some data...
My data is below and is stored as option_name "my_category_fields"
I need to ...