signup_get_available_languages example

    $errmsg_blog_title      = $errors->get_error_message( 'blog_title' );
    $errmsg_blog_title_aria = '';
    if ( $errmsg_blog_title ) {
        $errmsg_blog_title_aria = ' aria-describedby="wp-signup-blog-title-error"';
        echo '<p class="error" id="wp-signup-blog-title-error">' . $errmsg_blog_title . '</p>';
    }
    echo '<input name="blog_title" type="text" id="blog_title" value="' . esc_attr( $blog_title ) . '" required="required" autocomplete="off"' . $errmsg_blog_title_aria . ' />';
    ?> <?php     // Site Language.     $languages = signup_get_available_languages();

    if ( ! empty( $languages ) ) :
        ?> <p> <label for="site-language"><?php _e( 'Site Language:' ); ?></label> <?php             // Network default.             $lang = get_site_option( 'WPLANG' );

            if ( isset( $_POST['WPLANG'] ) ) {
                $lang = $_POST['WPLANG'];
            }
Home | Imprint | This part of the site doesn't use cookies.