Modify the Trackbacks Headline Text

Unless otherwise indicated, the code snippets you see below should be placed into your theme’s functions.php file.

Here is the code needed to modify the Trackbacks headline text on your site:

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
 
//* Modify trackbacks title in comments
add_filter( 'genesis_title_pings', 'sp_title_pings' );
function sp_title_pings() {
echo '<h3>Trackbacks</h3>';
}
What are your feelings