Changeset 62442
- Timestamp:
- 06/01/2026 11:20:59 PM (3 weeks ago)
- Location:
- trunk/src/wp-content/themes/twentyeleven
- Files:
-
- 4 edited
-
content-featured.php (modified) (1 diff)
-
functions.php (modified) (3 diffs)
-
header.php (modified) (2 diffs)
-
showcase.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/content-featured.php
r52929 r62442 8 8 */ 9 9 10 /** 11 * @global string $feature_class CSS classes for the article element. 12 */ 10 13 global $feature_class; 11 14 ?> -
trunk/src/wp-content/themes/twentyeleven/functions.php
r61440 r62442 71 71 * 72 72 * @since Twenty Eleven 1.0 73 * 74 * @global string $wp_version The WordPress version string. 73 75 */ 74 76 function twentyeleven_setup() { … … 637 639 * @since Twenty Eleven 1.0 638 640 * 641 * @global WP_Query $wp_query WordPress Query object. 642 * 639 643 * @param string $html_id The HTML id attribute. 640 644 */ … … 753 757 * 754 758 * @since Twenty Eleven 1.0 759 * 760 * @global WP_Comment $comment Global comment object. 755 761 * 756 762 * @param WP_Comment $comment The comment object. -
trunk/src/wp-content/themes/twentyeleven/header.php
r62344 r62442 9 9 * @since Twenty Eleven 1.0 10 10 */ 11 12 /** 13 * @global int $page WordPress paginated post page count. 14 * @global int $paged WordPress archive pagination page count. 15 */ 16 global $page, $paged; 17 11 18 ?><!DOCTYPE html> 12 19 <html <?php language_attributes(); ?>> … … 17 24 <?php 18 25 // Print the <title> tag based on what is being viewed. 19 global $page, $paged;20 21 26 wp_title( '|', true, 'right' ); 22 27 -
trunk/src/wp-content/themes/twentyeleven/showcase.php
r56556 r62442 209 209 $recent->the_post(); 210 210 211 /** 212 * @global int $more 213 */ 214 global $more; 211 215 // Set $more to 0 in order to only get the first part of the post. 212 global $more;213 216 $more = 0; 214 217
Note: See TracChangeset
for help on using the changeset viewer.