Disabling Tags - nomadjimbob/mikioplugin GitHub Wiki
If a Mikio Plugin tag is conflicting with another plugins tag, or you want to simply disable a tag, you can do this in the disabled-tags.php
file.
Simply change the tag you want to disable to true
instead of false
. Pages that have already been generated while the tag was enabled will need to be regenerated.
$mikio_disabled_tags = [
'accordion' => false,
'accordion-item' => false,
'alert' => true,
'anchor' => false,
'badge' => false,
…
];
Above is an example of disabling the <alert>
tag.