Make WordPress Core

Ticket #26742: 26742.patch

File 26742.patch, 2.0 KB (added by SergeyBiryukov, 12 years ago)
  • src/wp-includes/template.php

     
    131131 * trying category ID, for example 'category-1.php', and will finally fall back to category.php
    132132 * template, if those files don't exist.
    133133 *
     134 * Calls 'category_template' filter on file path of category template.
     135 *
    134136 * @since 1.5.0
    135  * @uses apply_filters() Calls 'category_template' on file path of category template.
    136137 *
    137138 * @return string
    138139 */
     
    157158 * trying tag ID, for example 'tag-1.php', and will finally fall back to tag.php
    158159 * template, if those files don't exist.
    159160 *
     161 * Calls 'tag_template' filter on file path of tag template.
     162 *
    160163 * @since 2.3.0
    161  * @uses apply_filters() Calls 'tag_template' on file path of tag template.
    162164 *
    163165 * @return string
    164166 */
     
    188190 * template is used. If none of the files exist, then it will fall back on to
    189191 * index.php.
    190192 *
     193 * Calls 'taxonomy_template' filter on found path.
     194 *
    191195 * @since 2.5.0
    192  * @uses apply_filters() Calls 'taxonomy_template' filter on found path.
    193196 *
    194197 * @return string
    195198 */
     
    226229 *
    227230 * Attempts to locate 'home.php' first before falling back to 'index.php'.
    228231 *
     232 * Calls 'home_template' filter on file path of home template.
     233 *
    229234 * @since 1.5.0
    230  * @uses apply_filters() Calls 'home_template' on file path of home template.
    231235 *
    232236 * @return string
    233237 */
     
    242246 *
    243247 * Looks for 'front-page.php'.
    244248 *
     249 * Calls 'front_page_template' filter on file path of template.
     250 *
    245251 * @since 3.0.0
    246  * @uses apply_filters() Calls 'front_page_template' on file path of template.
    247252 *
    248253 * @return string
    249254 */
     
    371376 * Checks for comment popup template in current template, if it exists or in the
    372377 * parent template.
    373378 *
     379 * Calls 'comments_popup_template' filter on path.
     380 *
    374381 * @since 1.5.0
    375  * @uses apply_filters() Calls 'comments_popup_template' filter on path.
    376382 *
    377383 * @return string
    378384 */