]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/post-template.php
Wordpress 2.7.1
[autoinstalls/wordpress.git] / wp-includes / post-template.php
index 40a56d99eb3f5a8381fae9a55c77cec15be1f728..2ff0e7db168fb2f22fcb4af60606483ea1bb8bdf 100644 (file)
@@ -1,21 +1,47 @@
 <?php
+/**
+ * WordPress Post Template Functions.
+ *
+ * Gets content for the current post in the loop.
+ *
+ * @package WordPress
+ * @subpackage Template
+ */
 
-//
-// "The Loop" post functions
-//
-
+/**
+ * Display the ID of the current item in the WordPress Loop.
+ *
+ * @since 0.71
+ * @uses $id
+ */
 function the_ID() {
        global $id;
        echo $id;
 }
 
-
+/**
+ * Retrieve the ID of the current item in the WordPress Loop.
+ *
+ * @since 2.1.0
+ * @uses $id
+ *
+ * @return unknown
+ */
 function get_the_ID() {
        global $id;
        return $id;
 }
 
-
+/**
+ * Display or retrieve the current post title with optional content.
+ *
+ * @since 0.71
+ *
+ * @param string $before Optional. Content to prepend to the title.
+ * @param string $after Optional. Content to append to the title.
+ * @param bool $echo Optional, default to true.Whether to display or return.
+ * @return null|string Null on no title. String if $echo parameter is false.
+ */
 function the_title($before = '', $after = '', $echo = true) {
        $title = get_the_title();
 
@@ -30,6 +56,21 @@ function the_title($before = '', $after = '', $echo = true) {
                return $title;
 }
 
+/**
+ * Sanitize the current title when retrieving or displaying.
+ *
+ * Works like {@link the_title()}, except the parameters can be in a string or
+ * an array. See the function for what can be override in the $args parameter.
+ *
+ * The title before it is displayed will have the tags stripped and {@link
+ * attribute_escape()} before it is passed to the user or displayed. The default
+ * as with {@link the_title()}, is to display the title.
+ *
+ * @since 2.3.0
+ *
+ * @param string|array $args Optional. Override the defaults.
+ * @return string|null Null on failure or display. String when echo is false.
+ */
 function the_title_attribute( $args = '' ) {
        $title = get_the_title();
 
@@ -50,6 +91,18 @@ function the_title_attribute( $args = '' ) {
                return $title;
 }
 
+/**
+ * Retrieve post title.
+ *
+ * If the post is protected and the visitor is not an admin, then "Protected"
+ * will be displayed before the post title. If the post is private, then
+ * "Private" will be located before the post title.
+ *
+ * @since 0.71
+ *
+ * @param int $id Optional. Post ID.
+ * @return string
+ */
 function get_the_title( $id = 0 ) {
        $post = &get_post($id);
 
@@ -64,34 +117,77 @@ function get_the_title( $id = 0 ) {
        return apply_filters( 'the_title', $title );
 }
 
+/**
+ * Display the Post Global Unique Identifier (guid).
+ *
+ * The guid will appear to be a link, but should not be used as an link to the
+ * post. The reason you should not use it as a link, is because of moving the
+ * blog across domains.
+ *
+ * @since 1.5.0
+ *
+ * @param int $id Optional. Post ID.
+ */
 function the_guid( $id = 0 ) {
        echo get_the_guid($id);
 }
 
+/**
+ * Retrieve the Post Global Unique Identifier (guid).
+ *
+ * The guid will appear to be a link, but should not be used as an link to the
+ * post. The reason you should not use it as a link, is because of moving the
+ * blog across domains.
+ *
+ * @since 1.5.0
+ *
+ * @param int $id Optional. Post ID.
+ * @return string
+ */
 function get_the_guid( $id = 0 ) {
        $post = &get_post($id);
 
        return apply_filters('get_the_guid', $post->guid);
 }
 
-function the_content($more_link_text = '(more...)', $stripteaser = 0, $more_file = '') {
+/**
+ * Display the post content.
+ *
+ * @since 0.71
+ *
+ * @param string $more_link_text Optional. Content for when there is more text.
+ * @param string $stripteaser Optional. Teaser content before the more text.
+ * @param string $more_file Optional. Not used.
+ */
+function the_content($more_link_text = null, $stripteaser = 0, $more_file = '') {
        $content = get_the_content($more_link_text, $stripteaser, $more_file);
        $content = apply_filters('the_content', $content);
        $content = str_replace(']]>', ']]&gt;', $content);
        echo $content;
 }
 
-
-function get_the_content($more_link_text = '(more...)', $stripteaser = 0, $more_file = '') {
+/**
+ * Retrieve the post content.
+ *
+ * @since 0.71
+ *
+ * @param string $more_link_text Optional. Content for when there is more text.
+ * @param string $stripteaser Optional. Teaser content before the more text.
+ * @param string $more_file Optional. Not used.
+ * @return string
+ */
+function get_the_content($more_link_text = null, $stripteaser = 0, $more_file = '') {
        global $id, $post, $more, $page, $pages, $multipage, $preview, $pagenow;
 
+       if ( null === $more_link_text )
+               $more_link_text = __( '(more...)' );
+
        $output = '';
 
-       if ( !empty($post->post_password) ) { // if there's a password
-               if ( !isset($_COOKIE['wp-postpass_'.COOKIEHASH]) || stripslashes($_COOKIE['wp-postpass_'.COOKIEHASH]) != $post->post_password ) {       // and it doesn't match the cookie
-                       $output = get_the_password_form();
-                       return $output;
-               }
+       // If post password required and it doesn't match the cookie.
+       if ( post_password_required($post) ) {
+               $output = get_the_password_form();
+               return $output;
        }
 
        if ( $more_file != '' )
@@ -127,39 +223,202 @@ function get_the_content($more_link_text = '(more...)', $stripteaser = 0, $more_
 
        }
        if ( $preview ) // preview fix for javascript bug with foreign languages
-               $output =       preg_replace('/\%u([0-9A-F]{4,4})/e',   "'&#'.base_convert('\\1',16,10).';'", $output);
+               $output =       preg_replace_callback('/\%u([0-9A-F]{4})/', create_function('$match', 'return "&#" . base_convert($match[1], 16, 10) . ";";'), $output);
 
        return $output;
 }
 
-
+/**
+ * Display the post excerpt.
+ *
+ * @since 0.71
+ * @uses apply_filters() Calls 'the_excerpt' hook on post excerpt.
+ */
 function the_excerpt() {
        echo apply_filters('the_excerpt', get_the_excerpt());
 }
 
-
+/**
+ * Retrieve the post excerpt.
+ *
+ * @since 0.71
+ *
+ * @param mixed $deprecated Not used.
+ * @return string
+ */
 function get_the_excerpt($deprecated = '') {
        global $post;
        $output = '';
        $output = $post->post_excerpt;
-       if ( !empty($post->post_password) ) { // if there's a password
-               if ( !isset($_COOKIE['wp-postpass_'.COOKIEHASH]) || $_COOKIE['wp-postpass_'.COOKIEHASH] != $post->post_password ) {  // and it doesn't match the cookie
-                       $output = __('There is no excerpt because this is a protected post.');
-                       return $output;
-               }
+       if ( post_password_required($post) ) {
+               $output = __('There is no excerpt because this is a protected post.');
+               return $output;
        }
 
        return apply_filters('get_the_excerpt', $output);
 }
 
+/**
+ * Whether post has excerpt.
+ *
+ * @since 2.3.0
+ *
+ * @param int $id Optional. Post ID.
+ * @return bool
+ */
 function has_excerpt( $id = 0 ) {
        $post = &get_post( $id );
        return ( !empty( $post->post_excerpt ) );
 }
 
+/**
+ * Display the classes for the post div.
+ *
+ * @since 2.7.0
+ *
+ * @param string|array $class One or more classes to add to the class list.
+ * @param int $post_id An optional post ID.
+ */
+function post_class( $class = '', $post_id = null ) {
+       // Separates classes with a single space, collates classes for post DIV
+       echo 'class="' . join( ' ', get_post_class( $class, $post_id ) ) . '"';
+}
+
+/**
+ * Retrieve the classes for the post div as an array.
+ *
+ * The class names are add are many. If the post is a sticky, then the 'sticky'
+ * class name. The class 'hentry' is always added to each post. For each
+ * category, the class will be added with 'category-' with category slug is
+ * added. The tags are the same way as the categories with 'tag-' before the tag
+ * slug. All classes are passed through the filter, 'post_class' with the list
+ * of classes, followed by $class parameter value, with the post ID as the last
+ * parameter.
+ *
+ * @since 2.7.0
+ *
+ * @param string|array $class One or more classes to add to the class list.
+ * @param int $post_id An optional post ID.
+ * @return array Array of classes.
+ */
+function get_post_class( $class = '', $post_id = null ) {
+       $post = get_post($post_id);
+
+       $classes = array();
+
+       $classes[] = $post->post_type;
+
+       // sticky for Sticky Posts
+       if ( is_sticky($post->ID) && is_home())
+               $classes[] = 'sticky';
+
+       // hentry for hAtom compliace
+       $classes[] = 'hentry';
+
+       // Categories
+       foreach ( (array) get_the_category($post->ID) as $cat ) {
+               if ( empty($cat->slug ) )
+                       continue;
+               $classes[] = 'category-' . $cat->slug;
+       }
+
+       // Tags
+       foreach ( (array) get_the_tags($post->ID) as $tag ) {
+               if ( empty($tag->slug ) )
+                       continue;
+               $classes[] = 'tag-' . $tag->slug;
+       }
+
+       if ( !empty($class) ) {
+               if ( !is_array( $class ) )
+                       $class = preg_split('#\s+#', $class);
+               $classes = array_merge($classes, $class);
+       }
+
+       return apply_filters('post_class', $classes, $class, $post_id);
+}
+
+/**
+ * Whether post requires password and correct password has been provided.
+ *
+ * @since 2.7.0
+ *
+ * @param int|object $post An optional post.  Global $post used if not provided.
+ * @return bool false if a password is not required or the correct password cookie is present, true otherwise.
+ */
+function post_password_required( $post = null ) {
+       $post = get_post($post);
+
+       if ( empty($post->post_password) )
+               return false;
+
+       if ( !isset($_COOKIE['wp-postpass_' . COOKIEHASH]) )
+               return true;
+
+       if ( $_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password )
+               return true;
+
+       return false;
+}
+
+/**
+ * Display "sticky" CSS class, if a post is sticky.
+ *
+ * @since 2.7.0
+ *
+ * @param int $post_id An optional post ID.
+ */
+function sticky_class( $post_id = null ) {
+       if ( !is_sticky($post_id) )
+               return;
+
+       echo " sticky";
+}
+
+/**
+ * Page Template Functions for usage in Themes
+ *
+ * @package WordPress
+ * @subpackage Template
+ */
+
+/**
+ * The formatted output of a list of pages.
+ *
+ * Displays page links for paginated posts (i.e. includes the <!--nextpage-->.
+ * Quicktag one or more times). This tag must be within The Loop.
+ *
+ * The defaults for overwriting are:
+ * 'next_or_number' - Default is 'number' (string). Indicates whether page
+ *      numbers should be used. Valid values are number and next.
+ * 'nextpagelink' - Default is 'Next Page' (string). Text for link to next page.
+ *      of the bookmark.
+ * 'previouspagelink' - Default is 'Previous Page' (string). Text for link to
+ *      previous page, if available.
+ * 'pagelink' - Default is '%' (String).Format string for page numbers. The % in
+ *      the parameter string will be replaced with the page number, so Page %
+ *      generates "Page 1", "Page 2", etc. Defaults to %, just the page number.
+ * 'before' - Default is '<p> Pages:' (string). The html or text to prepend to
+ *      each bookmarks.
+ * 'after' - Default is '</p>' (string). The html or text to append to each
+ *      bookmarks.
+ * 'more_file' - Default is '' (string) Page the links should point to. Defaults
+ *      to the current page.
+ * 'link_before' - Default is '' (string). The html or text to prepend to each
+ *      Pages link inside the <a> tag.
+ * 'link_after' - Default is '' (string). The html or text to append to each
+ *      Pages link inside the <a> tag.
+ *
+ * @since 1.2.0
+ * @access private
+ *
+ * @param string|array $args Optional. Overwrite the defaults.
+ * @return string Formatted output in HTML.
+ */
 function wp_link_pages($args = '') {
        $defaults = array(
                'before' => '<p>' . __('Pages:'), 'after' => '</p>',
+               'link_before' => '', 'link_after' => '',
                'next_or_number' => 'number', 'nextpagelink' => __('Next page'),
                'previouspagelink' => __('Previous page'), 'pagelink' => '%',
                'more_file' => '', 'echo' => 1
@@ -190,8 +449,11 @@ function wp_link_pages($args = '') {
                                                else
                                                        $output .= '<a href="' . trailingslashit(get_permalink()) . user_trailingslashit($i, 'single_paged') . '">';
                                        }
+
                                }
+                               $output .= $link_before;
                                $output .= $j;
+                               $output .= $link_after;
                                if ( ($i != $page) || ((!$more) && ($page==1)) )
                                        $output .= '</a>';
                        }
@@ -202,23 +464,23 @@ function wp_link_pages($args = '') {
                                $i = $page - 1;
                                if ( $i && $more ) {
                                        if ( 1 == $i ) {
-                                               $output .= '<a href="' . get_permalink() . '">' . $previouspagelink . '</a>';
+                                               $output .= '<a href="' . get_permalink() . '">' . $link_before. $previouspagelink . $link_after . '</a>';
                                        } else {
                                                if ( '' == get_option('permalink_structure') || in_array($post->post_status, array('draft', 'pending')) )
-                                                       $output .= '<a href="' . get_permalink() . '&amp;page=' . $i . '">' . $previouspagelink . '</a>';
+                                                       $output .= '<a href="' . get_permalink() . '&amp;page=' . $i . '">' . $link_before. $previouspagelink . $link_after . '</a>';
                                                else
-                                                       $output .= '<a href="' . trailingslashit(get_permalink()) . user_trailingslashit($i, 'single_paged') . '">' . $previouspagelink . '</a>';
+                                                       $output .= '<a href="' . trailingslashit(get_permalink()) . user_trailingslashit($i, 'single_paged') . '">' . $link_before. $previouspagelink . $link_after . '</a>';
                                        }
                                }
                                $i = $page + 1;
                                if ( $i <= $numpages && $more ) {
                                        if ( 1 == $i ) {
-                                               $output .= '<a href="' . get_permalink() . '">' . $nextpagelink . '</a>';
+                                               $output .= '<a href="' . get_permalink() . '">' . $link_before. $nextpagelink . $link_after . '</a>';
                                        } else {
                                                if ( '' == get_option('permalink_structure') || in_array($post->post_status, array('draft', 'pending')) )
-                                                       $output .= '<a href="' . get_permalink() . '&amp;page=' . $i . '">' . $nextpagelink . '</a>';
+                                                       $output .= '<a href="' . get_permalink() . '&amp;page=' . $i . '">' . $link_before. $nextpagelink . $link_after . '</a>';
                                                else
-                                                       $output .= '<a href="' . trailingslashit(get_permalink()) . user_trailingslashit($i, 'single_paged') . '">' . $nextpagelink . '</a>';
+                                                       $output .= '<a href="' . trailingslashit(get_permalink()) . user_trailingslashit($i, 'single_paged') . '">' . $link_before. $nextpagelink . $link_after . '</a>';
                                        }
                                }
                                $output .= $after;
@@ -237,7 +499,14 @@ function wp_link_pages($args = '') {
 // Post-meta: Custom per-post fields.
 //
 
-
+/**
+ * Retrieve post custom meta data field.
+ *
+ * @since 1.5.0
+ *
+ * @param string $key Meta data key name.
+ * @return string|array Array of values or single value, if only one element exists.
+ */
 function post_custom( $key = '' ) {
        $custom = get_post_custom();
 
@@ -247,12 +516,17 @@ function post_custom( $key = '' ) {
                return $custom[$key];
 }
 
-
-// this will probably change at some point...
+/**
+ * Display list of post custom fields.
+ *
+ * @internal This will probably change at some point...
+ * @since 1.2.0
+ * @uses apply_filters() Calls 'the_meta_key' on list item HTML content, with key and value as separate parameters.
+ */
 function the_meta() {
        if ( $keys = get_post_custom_keys() ) {
                echo "<ul class='post-meta'>\n";
-               foreach ( $keys as $key ) {
+               foreach ( (array) $keys as $key ) {
                        $keyt = trim($key);
                        if ( '_' == $keyt{0} )
                                continue;
@@ -264,16 +538,24 @@ function the_meta() {
        }
 }
 
-
 //
 // Pages
 //
 
+/**
+ * Retrieve or display list of pages as a dropdown (select list).
+ *
+ * @since 2.1.0
+ *
+ * @param array|string $args Optional. Override default arguments.
+ * @return string HTML content, if not displaying.
+ */
 function wp_dropdown_pages($args = '') {
        $defaults = array(
                'depth' => 0, 'child_of' => 0,
                'selected' => 0, 'echo' => 1,
-               'name' => 'page_id', 'show_option_none' => ''
+               'name' => 'page_id', 'show_option_none' => '', 'show_option_no_change' => '',
+               'option_none_value' => ''
        );
 
        $r = wp_parse_args( $args, $defaults );
@@ -283,9 +565,11 @@ function wp_dropdown_pages($args = '') {
        $output = '';
 
        if ( ! empty($pages) ) {
-               $output = "<select name='$name' id='$name'>\n";
+               $output = "<select name=\"$name\" id=\"$name\">\n";
+               if ( $show_option_no_change )
+                       $output .= "\t<option value=\"-1\">$show_option_no_change</option>";
                if ( $show_option_none )
-                       $output .= "\t<option value=''>$show_option_none</option>\n";
+                       $output .= "\t<option value=\"$option_none_value\">$show_option_none</option>\n";
                $output .= walk_page_dropdown_tree($pages, $depth, $r);
                $output .= "</select>\n";
        }
@@ -298,13 +582,22 @@ function wp_dropdown_pages($args = '') {
        return $output;
 }
 
+/**
+ * Retrieve or display list of pages in list (li) format.
+ *
+ * @since 1.5.0
+ *
+ * @param array|string $args Optional. Override default arguments.
+ * @return string HTML content, if not displaying.
+ */
 function wp_list_pages($args = '') {
        $defaults = array(
                'depth' => 0, 'show_date' => '',
                'date_format' => get_option('date_format'),
                'child_of' => 0, 'exclude' => '',
                'title_li' => __('Pages'), 'echo' => 1,
-               'authors' => '', 'sort_column' => 'menu_order, post_title'
+               'authors' => '', 'sort_column' => 'menu_order, post_title',
+               'link_before' => '', 'link_after' => ''
        );
 
        $r = wp_parse_args( $args, $defaults );
@@ -314,7 +607,7 @@ function wp_list_pages($args = '') {
        $current_page = 0;
 
        // sanitize, mostly to keep spaces out
-       $r['exclude'] = preg_replace('[^0-9,]', '', $r['exclude']);
+       $r['exclude'] = preg_replace('/[^0-9,]/', '', $r['exclude']);
 
        // Allow plugins to filter an array of excluded pages
        $r['exclude'] = implode(',', apply_filters('wp_list_pages_excludes', explode(',', $r['exclude'])));
@@ -344,16 +637,100 @@ function wp_list_pages($args = '') {
                return $output;
 }
 
+/**
+ * Display or retrieve list of pages with optional home link.
+ *
+ * The arguments are listed below and part of the arguments are for {@link
+ * wp_list_pages()} function. Check that function for more info on those
+ * arguments.
+ *
+ * <ul>
+ * <li><strong>sort_column</strong> - How to sort the list of pages. Defaults
+ * to page title. Use column for posts table.</li>
+ * <li><strong>menu_class</strong> - Class to use for the div ID which contains
+ * the page list. Defaults to 'menu'.</li>
+ * <li><strong>echo</strong> - Whether to echo list or return it. Defaults to
+ * echo.</li>
+ * <li><strong>link_before</strong> - Text before show_home argument text.</li>
+ * <li><strong>link_after</strong> - Text after show_home argument text.</li>
+ * <li><strong>show_home</strong> - If you set this argument, then it will
+ * display the link to the home page. The show_home argument really just needs
+ * to be set to the value of the text of the link.</li>
+ * </ul>
+ *
+ * @since 2.7.0
+ *
+ * @param array|string $args
+ */
+function wp_page_menu( $args = array() ) {
+       $defaults = array('sort_column' => 'post_title', 'menu_class' => 'menu', 'echo' => true, 'link_before' => '', 'link_after' => '');
+       $args = wp_parse_args( $args, $defaults );
+       $args = apply_filters( 'wp_page_menu_args', $args );
+
+       $menu = '';
+
+       $list_args = $args;
+
+       // Show Home in the menu
+       if ( isset($args['show_home']) && ! empty($args['show_home']) ) {
+               if ( true === $args['show_home'] || '1' === $args['show_home'] || 1 === $args['show_home'] )
+                       $text = __('Home');
+               else
+                       $text = $args['show_home'];
+               $class = '';
+               if ( is_front_page() && !is_paged() )
+                       $class = 'class="current_page_item"';
+               $menu .= '<li ' . $class . '><a href="' . get_option('home') . '">' . $args['link_before'] . $text . $args['link_after'] . '</a></li>';
+               // If the front page is a page, add it to the exclude list
+               if (get_option('show_on_front') == 'page') {
+                       if ( !empty( $list_args['exclude'] ) ) {
+                               $list_args['exclude'] .= ',';
+                       } else {
+                               $list_args['exclude'] = '';
+                       }
+                       $list_args['exclude'] .= get_option('page_on_front');
+               }
+       }
+
+       $list_args['echo'] = false;
+       $list_args['title_li'] = '';
+       $menu .= str_replace( array( "\r", "\n", "\t" ), '', wp_list_pages($list_args) );
+
+       if ( $menu )
+               $menu = '<ul>' . $menu . '</ul>';
+
+       $menu = '<div class="' . $args['menu_class'] . '">' . $menu . "</div>\n";
+       $menu = apply_filters( 'wp_page_menu', $menu, $args );
+       if ( $args['echo'] )
+               echo $menu;
+       else
+               return $menu;
+}
+
 //
 // Page helpers
 //
 
-function walk_page_tree() {
+/**
+ * Retrieve HTML list content for page list.
+ *
+ * @uses Walker_Page to create HTML list content.
+ * @since 2.1.0
+ * @see Walker_Page::walk() for parameters and return description.
+ */
+function walk_page_tree($pages, $depth, $current_page, $r) {
        $walker = new Walker_Page;
-       $args = func_get_args();
+       $args = array($pages, $depth, $r, $current_page);
        return call_user_func_array(array(&$walker, 'walk'), $args);
 }
 
+/**
+ * Retrieve HTML dropdown (select) content for page list.
+ *
+ * @uses Walker_PageDropdown to create HTML dropdown content.
+ * @since 2.1.0
+ * @see Walker_PageDropdown::walk() for parameters and return description.
+ */
 function walk_page_dropdown_tree() {
        $walker = new Walker_PageDropdown;
        $args = func_get_args();
@@ -364,6 +741,16 @@ function walk_page_dropdown_tree() {
 // Attachments
 //
 
+/**
+ * Display an attachment page link using an image or icon.
+ *
+ * @since 2.0.0
+ *
+ * @param int $id Optional. Post ID.
+ * @param bool $fullsize Optional, default is false. Whether to use full size.
+ * @param bool $deprecated Deprecated. Not used.
+ * @param bool $permalink Optional, default is false. Whether to include permalink.
+ */
 function the_attachment_link($id = 0, $fullsize = false, $deprecated = false, $permalink = false) {
        if ( $fullsize )
                echo wp_get_attachment_link($id, 'full', $permalink);
@@ -371,7 +758,18 @@ function the_attachment_link($id = 0, $fullsize = false, $deprecated = false, $p
                echo wp_get_attachment_link($id, 'thumbnail', $permalink);
 }
 
-// get an attachment page link using an image or icon if possible
+/**
+ * Retrieve an attachment page link using an image or icon, if possible.
+ *
+ * @since 2.5.0
+ * @uses apply_filters() Calls 'wp_get_attachment_link' filter on HTML content with same parameters as function.
+ *
+ * @param int $id Optional. Post ID.
+ * @param string $size Optional. Image size.
+ * @param bool $permalink Optional, default is false. Whether to add permalink to image.
+ * @param bool $icon Optional, default is false. Whether to include icon.
+ * @return string HTML content.
+ */
 function wp_get_attachment_link($id = 0, $size = 'thumbnail', $permalink = false, $icon = false) {
        $id = intval($id);
        $_post = & get_post( $id );
@@ -388,11 +786,22 @@ function wp_get_attachment_link($id = 0, $size = 'thumbnail', $permalink = false
        if ( !$link_text )
                $link_text = $_post->post_title;
 
-       return "<a href='$url' title='$post_title'>$link_text</a>";
-
+       return apply_filters( 'wp_get_attachment_link', "<a href='$url' title='$post_title'>$link_text</a>", $id, $size, $permalink, $icon );
 }
 
-// deprecated - use wp_get_attachment_link()
+/**
+ * Retrieve HTML content of attachment image with link.
+ *
+ * @since 2.0.0
+ * @deprecated Use {@link wp_get_attachment_link()}
+ * @see wp_get_attachment_link() Use instead.
+ *
+ * @param int $id Optional. Post ID.
+ * @param bool $fullsize Optional, default is false. Whether to use full size image.
+ * @param array $max_dims Optional. Max image dimensions.
+ * @param bool $permalink Optional, default is false. Whether to include permalink to image.
+ * @return string
+ */
 function get_the_attachment_link($id = 0, $fullsize = false, $max_dims = false, $permalink = false) {
        $id = (int) $id;
        $_post = & get_post($id);
@@ -409,8 +818,17 @@ function get_the_attachment_link($id = 0, $fullsize = false, $max_dims = false,
        return "<a href='$url' title='$post_title'>$innerHTML</a>";
 }
 
-
-// deprecated: use wp_get_attachment_image_src()
+/**
+ * Retrieve icon URL and Path.
+ *
+ * @since 2.1.0
+ * @deprecated Use {@link wp_get_attachment_image_src()}
+ * @see wp_get_attachment_image_src() Use instead.
+ *
+ * @param int $id Optional. Post ID.
+ * @param bool $fullsize Optional, default to false. Whether to have full image.
+ * @return array Icon URL and full path to file, respectively.
+ */
 function get_attachment_icon_src( $id = 0, $fullsize = false ) {
        $id = (int) $id;
        if ( !$post = & get_post($id) )
@@ -442,12 +860,23 @@ function get_attachment_icon_src( $id = 0, $fullsize = false ) {
        return array($src, $src_file);
 }
 
-// deprecated: use wp_get_attachment_image()
+/**
+ * Retrieve HTML content of icon attachment image element.
+ *
+ * @since 2.0.0
+ * @deprecated Use {@link wp_get_attachment_image()}
+ * @see wp_get_attachment_image() Use instead of.
+ *
+ * @param int $id Optional. Post ID.
+ * @param bool $fullsize Optional, default to false. Whether to have full size image.
+ * @param array $max_dims Optional. Dimensions of image.
+ * @return string HTML content.
+ */
 function get_attachment_icon( $id = 0, $fullsize = false, $max_dims = false ) {
        $id = (int) $id;
        if ( !$post = & get_post($id) )
                return false;
-               
+
        if ( !$src = get_attachment_icon_src( $post->ID, $fullsize ) )
                return false;
 
@@ -486,7 +915,18 @@ function get_attachment_icon( $id = 0, $fullsize = false, $max_dims = false ) {
        return apply_filters( 'attachment_icon', $icon, $post->ID );
 }
 
-// deprecated: use wp_get_attachment_image()
+/**
+ * Retrieve HTML content of image element.
+ *
+ * @since 2.0.0
+ * @deprecated Use {@link wp_get_attachment_image()}
+ * @see wp_get_attachment_image() Use instead.
+ *
+ * @param int $id Optional. Post ID.
+ * @param bool $fullsize Optional, default to false. Whether to have full size image.
+ * @param array $max_dims Optional. Dimensions of image.
+ * @return string
+ */
 function get_attachment_innerHTML($id = 0, $fullsize = false, $max_dims = false) {
        $id = (int) $id;
        if ( !$post = & get_post($id) )
@@ -501,6 +941,15 @@ function get_attachment_innerHTML($id = 0, $fullsize = false, $max_dims = false)
        return apply_filters('attachment_innerHTML', $innerHTML, $post->ID);
 }
 
+/**
+ * Wrap attachment in <<p>> element before content.
+ *
+ * @since 2.0.0
+ * @uses apply_filters() Calls 'prepend_attachment' hook on HTML content.
+ *
+ * @param string $content
+ * @return string
+ */
 function prepend_attachment($content) {
        global $post;
 
@@ -520,6 +969,14 @@ function prepend_attachment($content) {
 // Misc
 //
 
+/**
+ * Retrieve protected post password form content.
+ *
+ * @since 1.0.0
+ * @uses apply_filters() Calls 'the_password_form' filter on output.
+ *
+ * @return string HTML content for password form for password protected post.
+ */
 function get_the_password_form() {
        global $post;
        $label = 'pwbox-'.(empty($post->ID) ? rand() : $post->ID);
@@ -528,19 +985,21 @@ function get_the_password_form() {
        <p><label for="' . $label . '">' . __("Password:") . ' <input name="post_password" id="' . $label . '" type="password" size="20" /></label> <input type="submit" name="Submit" value="' . __("Submit") . '" /></p>
        </form>
        ';
-       return $output;
+       return apply_filters('the_password_form', $output);
 }
 
 /**
- * is_page_template() - Determine wether or not we are in a page template
+ * Whether currently in a page template.
+ *
+ * This template tag allows you to determine whether or not you are in a page
+ * template. You can optional provide a template name and then the check will be
+ * specific to that template.
  *
- * This template tag allows you to determine wether or not you are in a page template.
- * You can optional provide a template name and then the check will be specific to
- * that template.
+ * @since 2.5.0
+ * @uses $wp_query
  *
- * @package Template Tags
- * @global object $wp_query
- * @param string $template The specific template name if specific matching is required
+ * @param string $template The specific template name if specific matching is required.
+ * @return bool False on failure, true if success.
  */
 function is_page_template($template = '') {
        if (!is_page()) {
@@ -566,17 +1025,17 @@ function is_page_template($template = '') {
 }
 
 /**
- * wp_post_revision_title() - returns formatted datetimestamp of a revision (linked to that revisions's page)
+ * Retrieve formatted date timestamp of a revision (linked to that revisions's page).
  *
  * @package WordPress
- * @subpackage Post Revisions
- * @since 2.6
+ * @subpackage Post_Revisions
+ * @since 2.6.0
  *
  * @uses date_i18n()
  *
- * @param int|object $revision revision ID or revision object
- * @param bool $link optional Link to revisions's page?
- * @return string i18n formatted datetimestamp or localized 'Corrent Revision'
+ * @param int|object $revision Revision ID or revision object.
+ * @param bool $link Optional, default is true. Link to revisions's page?
+ * @return string i18n formatted datetimestamp or localized 'Current Revision'.
  */
 function wp_post_revision_title( $revision, $link = true ) {
        if ( !$revision = get_post( $revision ) )
@@ -589,7 +1048,7 @@ function wp_post_revision_title( $revision, $link = true ) {
        $autosavef = __( '%s [Autosave]' );
        $currentf  = __( '%s [Current Revision]' );
 
-       $date = date_i18n( $datef, strtotime( $revision->post_modified_gmt . ' +0000' ) );
+       $date = date_i18n( $datef, strtotime( $revision->post_modified ) );
        if ( $link && current_user_can( 'edit_post', $revision->ID ) && $link = get_edit_post_link( $revision->ID ) )
                $date = "<a href='$link'>$date</a>";
 
@@ -602,29 +1061,36 @@ function wp_post_revision_title( $revision, $link = true ) {
 }
 
 /**
- * wp_list_post_revisions() - echoes list of a post's revisions
+ * Display list of a post's revisions.
  *
- * Can output either a UL with edit links or a TABLE with diff interface, and restore action links
+ * Can output either a UL with edit links or a TABLE with diff interface, and
+ * restore action links.
  *
  * Second argument controls parameters:
- *   (bool)   parent : include the parent (the "Current Revision") in the list
- *   (string) format : 'list' or 'form-table'.  'list' outputs UL, 'form-table' outputs TABLE with UI
- *   (int)    right  : what revision is currently being viewed - used in form-table format
- *   (int)    left   : what revision is currently being diffed against right - used in form-table format
+ *   (bool)   parent : include the parent (the "Current Revision") in the list.
+ *   (string) format : 'list' or 'form-table'.  'list' outputs UL, 'form-table'
+ *                     outputs TABLE with UI.
+ *   (int)    right  : what revision is currently being viewed - used in
+ *                     form-table format.
+ *   (int)    left   : what revision is currently being diffed against right -
+ *                     used in form-table format.
  *
  * @package WordPress
- * @subpackage Post Revisions
- * @since 2.6
+ * @subpackage Post_Revisions
+ * @since 2.6.0
  *
  * @uses wp_get_post_revisions()
  * @uses wp_post_revision_title()
  * @uses get_edit_post_link()
  * @uses get_author_name()
  *
- * @param int|object $post_id post ID or post object
- * @param string|array $args see description @see wp_parse_args()
+ * @todo split into two functions (list, form-table) ?
+ *
+ * @param int|object $post_id Post ID or post object.
+ * @param string|array $args See description {@link wp_parse_args()}.
+ * @return null
  */
-function wp_list_post_revisions( $post_id = 0, $args = null ) { // TODO? split into two functions (list, form-table) ?
+function wp_list_post_revisions( $post_id = 0, $args = null ) {
        if ( !$post = get_post( $post_id ) )
                return;
 
@@ -701,7 +1167,7 @@ function wp_list_post_revisions( $post_id = 0, $args = null ) { // TODO? split i
 
 <br class="clear" />
 
-<table class="widefat post-revisions">
+<table class="widefat post-revisions" cellspacing="0">
        <col />
        <col style="width: 33%" />
        <col style="width: 33%" />