Add this code to child theme‘s functions.php. (Put his anywhere between opening <?php
and closing ?>
php tags.)
function graphene_filter_gettext( $translated, $original, $domain ) {
$strings = array(
'Permalink to %s' => ' ',
);
if ( ! empty( $strings[$original] ) && is_front_page() ) {
$translations = &get_translations_for_domain( $domain );
$translated = $translations->translate( $strings[$original] );
}
return $translated;
}
add_filter( 'gettext', 'graphene_filter_gettext', 10, 3 );