Making WordPress.org

Ticket #1393: 1393.2.patch

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

     
    11<?php
    2 require WPORGPATH . 'footer.php';
    3  No newline at end of file
     2/**
     3 * The template for displaying the footer.
     4 *
     5 * @package wporg-login
     6 */
     7
     8require WPORGPATH . 'footer.php';
  • 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
     10/**
     11 * Registers support for various WordPress features.
     12 */
     13function wporg_login_setup() {
     14
     15        load_theme_textdomain( 'wporg-login' );
     16
     17        add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption' ) );
     18
     19}
     20add_action( 'after_setup_theme', 'wporg_login_setup' );
     21
     22
     23
     24/**
     25 * Extend the default WordPress body classes.
     26 *
     27 * @param array $classes A list of existing body class values.
     28 * @return array The filtered body class list.
     29 */
    330function wporg_login_body_class( $classes ) {
    431//      $classes[] = 'wporg-responsive';
    532        $classes[] = 'wporg-login';
     
    734}
    835add_filter( 'body_class', 'wporg_login_body_class' );
    936
     37
     38
     39/**
     40 * Remove the toolbar.
     41 */
    1042function wporg_login_init() {
    11         // We don't need the toolbar on this site.
    1243        show_admin_bar( false );
    1344}
    14 add_action( 'init', 'wporg_login_init' );
    15  No newline at end of file
     45add_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(); */ ?>