Changeset 5700 for trunk/wp-includes/general-template.php
- Timestamp:
- 06/14/2007 02:25:30 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/general-template.php
r5625 r5700 62 62 function bloginfo($show='') { 63 63 $info = get_bloginfo($show); 64 64 65 65 // Don't filter URL's. 66 66 if (strpos($show, 'url') === false && … … 323 323 function wp_get_archives($args = '') { 324 324 global $wpdb, $wp_locale; 325 325 326 326 $defaults = array( 327 327 'type' => 'monthly', 'limit' => '', … … 329 329 'after' => '', 'show_post_count' => false 330 330 ); 331 331 332 332 $r = wp_parse_args( $args, $defaults ); 333 333 extract( $r ); … … 594 594 if ( $ak_post_titles ) { 595 595 foreach ( $ak_post_titles as $ak_post_title ) { 596 596 597 597 $post_title = apply_filters( "the_title", $ak_post_title->post_title ); 598 598 $post_title = str_replace('"', '"', wptexturize( $post_title )); 599 599 600 600 if ( empty($ak_titles_for_day['day_'.$ak_post_title->dom]) ) 601 601 $ak_titles_for_day['day_'.$ak_post_title->dom] = ''; … … 818 818 function user_can_richedit() { 819 819 global $wp_rich_edit, $pagenow; 820 820 821 821 if ( !isset( $wp_rich_edit) ) { 822 822 if ( get_user_option( 'rich_editing' ) == 'true' &&
Note: See TracChangeset
for help on using the changeset viewer.