Files
2024_WEBSITE_fipf/plugins/fipfcard_plugin/php/menu/example_menu.php

20 lines
343 B
PHP

<?php
/**
* it means someone outside wp is accessing the file, in this case kill it.
*/
if (!defined('ABSPATH')) {
die('You can not access this file!');
}
function fipfcard_plugin_content() {
$fipfcard = new PLGNTLS_class();
echo $fipfcard->add_to_front( array(
"js/menu/example_menu.js",
"html/menu/example_menu.html",
));
}
?>