20 lines
343 B
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",
|
|
));
|
|
}
|
|
|
|
?>
|