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 | |
// Its normal that this script gives some mkdir chmod and unlink errors | |
// Load WordPress environment. | |
require 'wp-load.php'; | |
require 'wp-content/plugins/breeze/breeze.php'; | |
function md_change_breeze_settings() | |
{ |
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> | |
<table> | |
<thead> | |
<tr> | |
<th v-for="(column, index) in columns" :key="`col-${index}`" @click="sort(column.field)">{{ column.label }}</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr v-for="(row, index_row) in sortedRows" :key="'row' + index_row + uid"> |