Make WordPress Core

Ticket #12695: 2010-docs.diff

File 2010-docs.diff, 7.1 KB (added by dremeda, 15 years ago)

Various minor changes to Twenty Ten Docs

  • wp-content/themes/twentyten/404.php

     
    11<?php
    22/**
    3  * The template for displaying 404 pages (Not Found)
     3 * The template for displaying 404 pages (Not Found).
    44 *
    55 * @package WordPress
    66 * @subpackage Twenty_Ten
  • wp-content/themes/twentyten/archive.php

     
    11<?php
    22/**
    3  * Generic template for Archive pages.
     3 * The template for displaying Archive pages.
    44 *
    55 * Used to display archive-type pages if nothing more specific matches a query.
    66 * For example, puts together date-based pages if no date.php file exists.
  • wp-content/themes/twentyten/attachment.php

     
    11<?php
    22/**
    3  * The template used to display attachments.
     3 * The template for displaying attachments.
    44 *
    55 * @package WordPress
    66 * @subpackage Twenty_Ten
  • wp-content/themes/twentyten/author.php

     
    11<?php
    22/**
    3  * The template used to display Author Archive pages
     3 * The template for displaying Author Archive pages.
    44 *
    55 * @package WordPress
    66 * @subpackage Twenty_Ten
  • wp-content/themes/twentyten/author.php

     
    11<?php
    22/**
    3  * The template used to display Author Archive pages
     3 * The template for displaying Author Archive pages.
    44 *
    55 * @package WordPress
    66 * @subpackage Twenty_Ten
  • wp-content/themes/twentyten/category.php

     
    11<?php
    22/**
    3  * The template used to display Category Archive pages
     3 * The template for displaying Category Archive pages.
    44 *
    55 * @package WordPress
    66 * @subpackage Twenty_Ten
  • wp-content/themes/twentyten/comments.php

     
    11<?php
    22/**
    3  * The template used to display Comments
     3 * The template for displaying Comments.
    44 *
    55 * The area of the page that contains both current comments
    66 * and the comment form.  The actual display of comments is
    77 * handled by a callback to twentyten_comment which is
    8  * located in the functions.php file
     8 * located in the functions.php file.
    99 *
    1010 * @package WordPress
    1111 * @subpackage Twenty_Ten
  • wp-content/themes/twentyten/footer.php

     
    11<?php
    22/**
    3  * The template used to display the footer
     3 * The template for displaying the footer.
    44 *
    55 * Contains the closing of the id=main div and all content
    6  * after.  Calls sidebar-footer.php for bottom widgets
     6 * after.  Calls sidebar-footer.php for bottom widgets.
    77 *
    88 * @package WordPress
    99 * @subpackage Twenty_Ten
  • wp-content/themes/twentyten/index.php

     
    11<?php
    22/**
    3  * The main template file
     3 * The main template file.
    44 *
    55 * This is the most generic template file in a WordPress theme
    66 * and one of the two required files for a theme (the other being style.css).
  • wp-content/themes/twentyten/loop.php

     
    11<?php
    22/**
    3  * The loop that displays posts
     3 * The loop that displays posts.
    44 *
    55 * The loop displays the posts and the post content.  See
    66 * http://codex.wordpress.org/The_Loop to understand it and
  • wp-content/themes/twentyten/page.php

     
    11<?php
    22/**
    3  * The template used to display all pages
     3 * The template for displaying all pages.
    44 *
    55 * This is the template that displays all pages by default.
    66 * Please note that this is the wordpress construct of pages
  • wp-content/themes/twentyten/search.php

     
    11<?php
    22/**
    3  * The Search Results template
     3 * The template for displaying Search Results pages.
    44 *
    55 * @package WordPress
    66 * @subpackage Twenty_Ten
  • wp-content/themes/twentyten/sidebar-footer.php

     
    11<?php
    22/**
    3  * The Footer widget areas
     3 * The Footer widget areas.
    44 *
    55 * @package WordPress
    66 * @subpackage Twenty_Ten
  • wp-content/themes/twentyten/sidebar.php

     
    11<?php
    22/**
    3  * The Sidebar containing the primary and secondary widget areas
     3 * The Sidebar containing the primary and secondary widget areas.
    44 *
    55 * @package WordPress
    66 * @subpackage Twenty_Ten
  • wp-content/themes/twentyten/single.php

     
    11<?php
    22/**
    3  * The Template used to display all single posts
     3 * The Template for displaying all single posts.
    44 *
    55 * @package WordPress
    66 * @subpackage Twenty_Ten
  • wp-content/themes/twentyten/tag.php

     
    11<?php
    22/**
    3  * The template used to display Tag Archive pages
     3 * The template for displaying Tag Archive pages.
    44 *
    55 * @package WordPress
    66 * @subpackage Twenty_Ten