Changeset 24783 for trunk/wp-includes/post-template.php
- Timestamp:
- 07/23/2013 04:05:40 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/post-template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post-template.php
r24598 r24783 70 70 */ 71 71 function the_title_attribute( $args = '' ) { 72 $title = get_the_title(); 72 $defaults = array('before' => '', 'after' => '', 'echo' => true, 'post' => get_post() ); 73 $r = wp_parse_args($args, $defaults); 74 extract( $r, EXTR_SKIP ); 75 76 $title = get_the_title( $post ); 73 77 74 78 if ( strlen($title) == 0 ) 75 79 return; 76 77 $defaults = array('before' => '', 'after' => '', 'echo' => true);78 $r = wp_parse_args($args, $defaults);79 extract( $r, EXTR_SKIP );80 80 81 81 $title = $before . $title . $after;
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)