Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

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

Select an option

Save wp-seopress/5c57fa0f1f9f511f5527c5c41b10c152 to your computer and use it in GitHub Desktop.
Filter the inline CSS of the Google Preferred Sources button
add_filter( 'seopress_preferred_source_inline_css', 'sp_preferred_source_inline_css', 10, 1 );
function sp_preferred_source_inline_css( $css ) {
// Remove the default inline CSS and style the button from your theme.
return '';
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment