The wp-options tag has no wiki summary.
0
votes
3answers
158 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
2answers
80 views
Some Plugin Settings Are Kept After Removal and Reinstall of the Plugin
I have uninstalled and then reinstalled all my plugins hoping to restore my WordPress installation to its original state because I have problem with the funtion of RevieAzon plugin.
For example, ...
0
votes
1answer
20 views
Comment Blacklist
I have a list of words that I placed in my blacklist_key option values update_option( 'blacklist_keys', $words);. But I still can make a comment with such words. Any ideas?
I can't answer my question ...
1
vote
0answers
38 views
Set $options reference
I am starting up in theme development and i have searched on codex on the topic of setting theme options.This is is what i am talking about,
$options = array (
array( "name" => $themename." ...
0
votes
0answers
35 views
How can I update options with javascript?
I'm writing a plugin with an admin screen. I have a set of radio buttons to select the tabs on the plugin's admin page. I also have a 'last_tab' option that allows the administrator to pick up where ...
0
votes
0answers
372 views
Using wp_nonce_field to update multiple fields
I wrote a simple plugin that before now only had one option so the code below calling wp_nonce_field worked fine. However, now that I've had a second option it seems that the code below only allows ...
-1
votes
0answers
21 views
Wordpress options values is not inserted
I am trying to store json data as a string in an option.
The problem is that it contains values like this {"black":3,"blue":2}
$array = json_decode( stripslashes( $meta['meta_value'] ) ); //array is ...