mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-05 12:32:23 +08:00
10 lines
352 B
Text
10 lines
352 B
Text
function jetpackcom_custom_heading( $headline, $label, $module ) {
|
|
if ( 'sharing' == $module ) {
|
|
$headline = sprintf(
|
|
'<h1>%s</h1>',
|
|
$label
|
|
);
|
|
}
|
|
return $headline;
|
|
}
|
|
add_filter( 'jetpack_sharing_headline_html', 'jetpackcom_custom_heading', 10, 3 );
|