Skip to content

Instantly share code, notes, and snippets.

@ximosa
Created August 21, 2015 15:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ximosa/c07866e7f24f8110a38f to your computer and use it in GitHub Desktop.
Save ximosa/c07866e7f24f8110a38f to your computer and use it in GitHub Desktop.
Cómo cargar estilos en Génesis
//* Añadir nuevo css
add_action( 'wp_enqueue_scripts', 'custom_load_custom_style_sheet' );
function custom_load_custom_style_sheet() {
wp_enqueue_style( 'custom-stylesheet', CHILD_URL . '/custom.css', array(), PARENT_THEME_VERSION );
}
//* Sustituir css por defecto por otro
add_filter( 'stylesheet_uri', 'custom_replace_default_style_sheet', 10, 2 );
function custom_replace_default_style_sheet() {
return CHILD_URL . '/custom.css';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment