Пример #1
0
/**
 * Returns the main instance of Easy_Load_More to prevent the need to use globals.
 *
 * @since  1.0.0
 * @return object Easy_Load_More
 */
function Easy_Load_More()
{
    $instance = Easy_Load_More::instance(__FILE__, '1.0.0');
    if (is_null($instance->settings)) {
        $instance->settings = Easy_Load_More_Settings::instance($instance);
    }
    return $instance;
}