Skip to content

Instantly share code, notes, and snippets.

@JudeRosario
Last active December 11, 2015 11:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JudeRosario/816c1bf406776292cad7 to your computer and use it in GitHub Desktop.
Save JudeRosario/816c1bf406776292cad7 to your computer and use it in GitHub Desktop.
Update options Jobs and Experts
add_action('init', 'change_options_je');
function change_options_je() {
$x = get_option( 'jobs_experts_settings', array() );
$x['open_for_days'] = "30,365,999";
update_option( 'jobs_experts_settings', $x );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment