|
|
|
` label:
```php
```
2. Sla uw wijzigingen op.
3. Zorg ervoor dat uw thema is geconfigureerd om jQuery te laden. Je kunt dit doen door de volgende code toe te voegen aan het `functions.php`-bestand van je thema:
```php
functie mijn_enqueue_scripts() {
wp_enqueue_script('jquery');
}
add_action('wp_enqueue_scripts', 'mijn_enqueue_scripts');
```
4. Sla uw wijzigingen op.
Previous: Wat is CSS, syntaxis en hoe te gebruiken op webpagina's? | Next: Hoe tekst opmaken in HTML? |
Copyright © Computer Kennis https://www.nldit.com |