Exemplo n.º 1
0
/**
 * Returns the main instance of U_Next_Story to prevent the need to use globals.
 *
 * @since  1.0.0
 * @return object U_Next_Story
 */
function U_Next_Story()
{
    $instance = U_Next_Story::instance(__FILE__, '1.0.0');
    if (is_null($instance->settings)) {
        $instance->settings = U_Next_Story_Settings::instance($instance);
    }
    return $instance;
}