Changeset 13144
- Timestamp:
- 02/14/2010 08:07:55 AM (13 years ago)
- Location:
- trunk/wp-content/themes/twentyten
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyten/functions.php
r13129 r13144 37 37 // so we want them to be 940 pixels wide by 198 pixels tall (larger images will be auto-cropped to fit) 38 38 set_post_thumbnail_size( HEADER_IMAGE_WIDTH, HEADER_IMAGE_HEIGHT, true ); 39 40 // Add default posts and comments RSS feed links to head. 41 automatic_feed_links(); 39 42 40 43 // Make theme available for translation -
trunk/wp-content/themes/twentyten/header.php
r13141 r13144 28 28 <?php wp_head(); ?> 29 29 30 <link rel="alternate" type="application/rss+xml" href="<?php bloginfo( 'rss2_url' ); ?>" title="<?php printf( esc_attr__( '%s latest posts', 'twentyten' ), esc_html( get_bloginfo('name') ) ); ?>" />31 <link rel="alternate" type="application/rss+xml" href="<?php bloginfo( 'comments_rss2_url' ); ?>" title="<?php printf( esc_attr__( '%s latest comments', 'twentyten' ), esc_html( get_bloginfo('name') ) ); ?>" />32 30 <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> 33 31 </head>
Note: See TracChangeset
for help on using the changeset viewer.