Skip to content

Instantly share code, notes, and snippets.

@jackbillstrom
Created February 13, 2020 12:59
Show Gist options
  • Select an option

  • Save jackbillstrom/0a9e1f256211dc99196578daff9913af to your computer and use it in GitHub Desktop.

Select an option

Save jackbillstrom/0a9e1f256211dc99196578daff9913af to your computer and use it in GitHub Desktop.
function modal_styles() {
// wordpress funktion för att infoga stylesheet
// 'sweetmodal-css' är för wordpress, wp önskar att vi har ett namn här
// get_template_directory_uri() är en funktion som hämtar "länken" till temat
wp_enqueue_style( 'sweetmodal-css', get_template_directory_uri() . '/stilmallen.css' );
// wordpress funktion för att infoga script
// "array ( 'jquery' ), 1.12.4, true" betyder att vi förlitar oss på jQuery för detta script vi infogar
// 1.12.4 = Vilket versionnummer utav jQuery som
wp_enqueue_script( 'sweetmodal-js', get_template_directory_uri() . '/scriptet.js', array ( 'jquery' ), 1.12.4, true);
}
add_action('wp_enqueue_scripts', 'modal_styles');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment