Created
February 13, 2020 12:59
-
-
Save jackbillstrom/0a9e1f256211dc99196578daff9913af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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