---
title: Filtra el CSS en línea del botón Fuentes preferidas de Google
url: "https://www.seopress.org/es/soporte/hooks/filtra-el-css-en-linea-del-boton-fuentes-preferidas-de-google/"
lang: es
updated: 2026-06-16
hook_name: seopress_preferred_source_inline_css
required_version: 10.0
---

# Filtra el CSS en línea del botón Fuentes preferidas de Google

- **Hook name:** `seopress_preferred_source_inline_css`
- **Required version:** 10.0

```php
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 '';
};
```

Source: [https://gist.github.com/wp-seopress/5c57fa0f1f9f511f5527c5c41b10c152](https://gist.github.com/wp-seopress/5c57fa0f1f9f511f5527c5c41b10c152)



