This file contains 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
<?php | |
use PhpOffice\PhpWord\IOFactory; | |
use PhpOffice\PhpWord\PhpWord; | |
use PhpOffice\PhpWord\Shared\Converter; | |
use PhpOffice\PhpWord\Shared\Html; | |
add_action( 'wp_enqueue_scripts', 'vpresearch_theme_enqueue_styles' ); | |
function vpresearch_theme_enqueue_styles() { |
This file contains 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
<template> | |
<div | |
:id="item.id" | |
class="accordion-item grid-x" | |
v-bind:class="{'is-open': isOpen, 'is-active': isActive,}" | |
> | |
<div class="shrink cell accordion-item-input-wrapper"> | |
<input | |
type="checkbox" | |
:name="item.name" |