Forums

get_option() buggy with FALSE (1 post)

  1. GeertDD
    Member
    Posted 3 weeks ago #

    update_option('myboolean', FALSE);
    $option = get_option('myboolean', 'default');

    Question: what is the value of $option?

    It should be FALSE, because that is the value that is set by the user in the database. However, all boolean FALSE values seem to return the $default parameter. The $default parameter should only be returned when the option does not exist in the database. Right?

    http://codex.wordpress.org/Function_Reference/get_option

Reply

You must log in to post.

About this Topic