Skip to content

Instantly share code, notes, and snippets.

@kodetop
Last active June 25, 2023 03:50
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 kodetop/177091ed0efa04d187ba9b052f58d388 to your computer and use it in GitHub Desktop.
Save kodetop/177091ed0efa04d187ba9b052f58d388 to your computer and use it in GitHub Desktop.
Sintaxis wp_enqueue_style
// $handle: nombre del estilo (requerido)
// $src: ruta del archivo a incluir (requerido)
// $deps: nombre del estilo dependiente, se carga el dependiente previamente
// $ver: versión del archivo que vamos a incluir
// $media: media del estilo a incluir (‘all’, ‘screen’, ‘print’, ‘handheld’)
wp_enqueue_style( $handle, $src, $deps, $ver, $media );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment