Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save wp-seopress/1c07bf86b02fe645a8a30e02dde455b8 to your computer and use it in GitHub Desktop.

Select an option

Save wp-seopress/1c07bf86b02fe645a8a30e02dde455b8 to your computer and use it in GitHub Desktop.
Filter the HTML of the Google Preferred Sources button
add_filter( 'seopress_preferred_source_html', 'sp_preferred_source_html', 10, 4 );
function sp_preferred_source_html( $button, $args, $domain, $url ) {
// Wrap the button in a custom container.
return '<div class="my-preferred-source">' . $button . '</div>';
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment