Ticket #26742: 26742.patch
| File 26742.patch, 2.0 KB (added by , 12 years ago) |
|---|
-
src/wp-includes/template.php
131 131 * trying category ID, for example 'category-1.php', and will finally fall back to category.php 132 132 * template, if those files don't exist. 133 133 * 134 * Calls 'category_template' filter on file path of category template. 135 * 134 136 * @since 1.5.0 135 * @uses apply_filters() Calls 'category_template' on file path of category template.136 137 * 137 138 * @return string 138 139 */ … … 157 158 * trying tag ID, for example 'tag-1.php', and will finally fall back to tag.php 158 159 * template, if those files don't exist. 159 160 * 161 * Calls 'tag_template' filter on file path of tag template. 162 * 160 163 * @since 2.3.0 161 * @uses apply_filters() Calls 'tag_template' on file path of tag template.162 164 * 163 165 * @return string 164 166 */ … … 188 190 * template is used. If none of the files exist, then it will fall back on to 189 191 * index.php. 190 192 * 193 * Calls 'taxonomy_template' filter on found path. 194 * 191 195 * @since 2.5.0 192 * @uses apply_filters() Calls 'taxonomy_template' filter on found path.193 196 * 194 197 * @return string 195 198 */ … … 226 229 * 227 230 * Attempts to locate 'home.php' first before falling back to 'index.php'. 228 231 * 232 * Calls 'home_template' filter on file path of home template. 233 * 229 234 * @since 1.5.0 230 * @uses apply_filters() Calls 'home_template' on file path of home template.231 235 * 232 236 * @return string 233 237 */ … … 242 246 * 243 247 * Looks for 'front-page.php'. 244 248 * 249 * Calls 'front_page_template' filter on file path of template. 250 * 245 251 * @since 3.0.0 246 * @uses apply_filters() Calls 'front_page_template' on file path of template.247 252 * 248 253 * @return string 249 254 */ … … 371 376 * Checks for comment popup template in current template, if it exists or in the 372 377 * parent template. 373 378 * 379 * Calls 'comments_popup_template' filter on path. 380 * 374 381 * @since 1.5.0 375 * @uses apply_filters() Calls 'comments_popup_template' filter on path.376 382 * 377 383 * @return string 378 384 */