Making WordPress.org

Ticket #1393: 1393.patch

File 1393.patch, 3.7 KB (added by ramiy, 9 years ago)
  • trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/footer.php

     
    11<?php
     2/**
     3 * The template for displaying the footer.
     4 *
     5 * @package wporg-login
     6 */
     7
    28require WPORGPATH . 'footer.php';
     9 No newline at end of file
  • trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/functions.php

     
    11<?php
     2/**
     3 * WP.org login' functions and definitions.
     4 *
     5 * @package wporg-login
     6 */
    27
     8
     9 function wporg_login_setup() {
     10
     11        load_theme_textdomain( 'wporg-login' );
     12
     13        add_theme_support( 'html5', array(
     14                'search-form', 'comment-form', 'comment-list', 'gallery', 'caption'
     15        ) );
     16
     17}
     18add_action( 'after_setup_theme', 'wporg_login_setup' );
     19
     20
     21
    322function wporg_login_body_class( $classes ) {
    423//      $classes[] = 'wporg-responsive';
    524        $classes[] = 'wporg-login';
     
    726}
    827add_filter( 'body_class', 'wporg_login_body_class' );
    928
     29
     30
    1031function wporg_login_init() {
    1132        // We don't need the toolbar on this site.
    1233        show_admin_bar( false );
    1334}
    14 add_action( 'init', 'wporg_login_init' );
    15  No newline at end of file
     35add_action( 'init', 'wporg_login_init' );
  • trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/header.php

     
    11<?php
     2/**
     3 * The template for displaying the header.
     4 *
     5 * @package wporg-login
     6 */
     7
    28global $pagetitle, $wporg_global_header_options;
    39$pagetitle = wp_title( '', false );
    410wp_enqueue_style( 'blog-wp4', 'https://wordpress.org/style/blog-wp4.css', array(), 12 );
     
    1016);
    1117
    1218require WPORGPATH . 'header.php';
    13 
  • trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/index.php

     
    1 <?php get_header(); ?>
     1<?php
     2/**
     3 * The main template file.
     4 *
     5 * @package wporg-login
     6 */
    27
     8get_header();
     9?>
     10
    311<div id="pagebody">
    412        <div id="login-welcome" class="wrapper">
    5                 <h1>Welcome!</h1>
     13                <h1><?php _e( 'Welcome!', 'wporg-login' ); ?></h1>
    614                <ul>
    715                        <?php if ( is_user_logged_in() ) : ?>
    8                                 <li class="button"><a href="<?php echo wp_logout_url(); ?>"><?php _e( 'Logout' ) ?></a></li>
     16                                <li class="button"><a href="<?php echo wp_logout_url(); ?>"><?php _e( 'Logout', 'wporg-login' ); ?></a></li>
    917                        <?php else : ?>
    10                                 <li class="button"><a href="<?php echo wp_login_url(); ?>">Login</a></li>
    11                                 <li class="button"><a href="https://wordpress.org/support/register.php">Register</a></li>
     18                                <li class="button"><a href="<?php echo wp_login_url(); ?>"><?php _e( 'Login', 'wporg-login' ); ?></a></li>
     19                                <li class="button"><a href="https://wordpress.org/support/register.php"><?php _e( 'Register', 'wporg-login' ); ?></a></li>
    1220                        <?php endif; ?>
    1321                </ul>
    1422                <?php /* Could display wp_login_form(); */ ?>