Make WordPress Core

Ticket #30149: 30149.diff

File 30149.diff, 3.5 KB (added by lancewillett, 10 years ago)

Quick first pass, needs more eyes

  • wp-content/themes/twentyfifteen/author-bio.php

     
    11<?php
    22/**
    3  * The template for displaying Author bios
     3 * The template for displaying Author bios.
    44 *
    55 * @package WordPress
    66 * @subpackage Twenty_Fifteen
  • wp-content/themes/twentyfifteen/content-page.php

     
    11<?php
    22/**
    3  * The template used for displaying page content in page.php
     3 * The template used for displaying page content.
    44 *
    55 * @package WordPress
    66 * @subpackage Twenty_Fifteen
  • wp-content/themes/twentyfifteen/content.php

     
    11<?php
    22/**
    3  * The default template for displaying content
     3 * The default template for displaying content.
    44 *
    55 * Used for both single and index/archive/search.
    66 *
  • wp-content/themes/twentyfifteen/footer.php

     
    22/**
    33 * The template for displaying the footer.
    44 *
    5  * Contains the closing of the #content div and all content after.
     5 * Contains the closing of the "site-content" div and all content after.
    66 *
    77 * @package WordPress
    88 * @subpackage Twenty_Fifteen
  • wp-content/themes/twentyfifteen/functions.php

     
    258258add_filter( 'wp_title', 'twentyfifteen_wp_title', 10, 2 );
    259259
    260260/**
    261  * Add featured image as background image to post navs.
     261 * Add featured image as background image to post navigation elements.
    262262 *
    263263 * @since Twenty Fifteen 1.0
    264264 */
  • wp-content/themes/twentyfifteen/header.php

     
    22/**
    33 * The header for our theme.
    44 *
    5  * Displays all of the <head> section and everything up till <div id="content">
     5 * Displays all of the <head> section and everything up until the "site-content" div.
    66 *
    77 * @package WordPress
    88 * @subpackage Twenty_Fifteen
  • wp-content/themes/twentyfifteen/page.php

     
    11<?php
    22/**
    3  * The template for displaying all pages.
     3 * The template for displaying pages.
    44 *
    55 * This is the template that displays all pages by default.
    66 * Please note that this is the WordPress construct of pages and that
    7  * other 'pages' on your WordPress site will use a different template.
     7 * other "pages" on your WordPress site will use a different template.
    88 *
    99 * @package WordPress
    1010 * @subpackage Twenty_Fifteen