Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Modify Trackbacks Headline text in Genesis
//* Modify trackbacks title in comments
add_filter( 'genesis_title_pings', 'topleague_title_pings' );
function topleague_title_pings() {
echo '<h3>Trackbacks</h3>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment