Changeset 15364
- Timestamp:
- 07/03/2010 05:56:25 AM (14 years ago)
- Location:
- branches/3.0/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.0/wp-includes/comment-template.php
r15148 r15364 734 734 else 735 735 return get_trackback_url(); 736 } 737 738 /** 739 * Generates and displays the RDF for the trackback information of current post. 740 * 741 * Deprecated in 3.0.0, and restored in 3.0.1. 742 * 743 * @since 0.71 744 * 745 * @param int $deprecated Not used (Was $timezone = 0) 746 */ 747 function trackback_rdf( $deprecated = '' ) { 748 if ( !empty( $deprecated ) ) 749 _deprecated_argument( __FUNCTION__, '2.5' ); 750 751 echo '<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 752 xmlns:dc="http://purl.org/dc/elements/1.1/" 753 xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"> 754 <rdf:Description rdf:about="'; 755 the_permalink(); 756 echo '"'."\n"; 757 echo ' dc:identifier="'; 758 the_permalink(); 759 echo '"'."\n"; 760 echo ' dc:title="'.str_replace('--', '--', wptexturize(strip_tags(get_the_title()))).'"'."\n"; 761 echo ' trackback:ping="'.get_trackback_url().'"'." />\n"; 762 echo '</rdf:RDF>'; 736 763 } 737 764 -
branches/3.0/wp-includes/deprecated.php
r15230 r15364 2503 2503 2504 2504 /** 2505 * Generates and displays the RDF for the trackback information of current post.2506 *2507 * @since 0.712508 * @deprecated 3.0.02509 *2510 * @param int $deprecated Not used (Was $timezone = 0)2511 */2512 function trackback_rdf($deprecated = '') {2513 _deprecated_function( __FUNCTION__, '3.0' );2514 return '';2515 }2516 2517 /**2518 2505 * Checks that the taxonomy name exists. 2519 2506 *
Note: See TracChangeset
for help on using the changeset viewer.