Changeset 61994 for trunk/src/wp-includes/deprecated.php
- Timestamp:
- 03/12/2026 07:29:05 PM (9 days ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/deprecated.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/deprecated.php
r61946 r61994 151 151 $string = '<a href="'.get_permalink($post->ID).'">'.$previous; 152 152 if ( 'yes' == $title ) 153 /** This filter is documented in wp-includes/post-template.php */ 153 154 $string .= apply_filters('the_title', $post->post_title, $post->ID); 154 155 $string .= '</a>'; … … 186 187 $string = '<a href="'.get_permalink($post->ID).'">'.$next; 187 188 if ( 'yes' == $title ) 189 /** This filter is documented in wp-includes/post-template.php */ 188 190 $string .= apply_filters('the_title', $post->post_title, $post->ID); 189 191 $string .= '</a>'; … … 1061 1063 1062 1064 // Display the category name. 1065 /** This filter is documented in wp-includes/bookmark-template.php */ 1063 1066 echo ' <li id="linkcat-' . $cat->term_id . '" class="linkcat"><h2>' . apply_filters('link_category', $cat->name ) . "</h2>\n\t<ul>\n"; 1064 1067 // Call get_links() with all the appropriate params. … … 2703 2706 $title = str_replace('%title', $post->post_title, $title); 2704 2707 $title = str_replace('%date', $date, $title); 2708 /** This filter is documented in wp-includes/post-template.php */ 2705 2709 $title = apply_filters('the_title', $title, $post->ID); 2706 2710 … … 2780 2784 $title = str_replace('%title', $post->post_title, $title); 2781 2785 $title = str_replace('%date', $date, $title); 2786 /** This filter is documented in wp-includes/post-template.php */ 2782 2787 $title = apply_filters('the_title', $title, $post->ID); 2783 2788
Note: See TracChangeset
for help on using the changeset viewer.