Files
WORDPRESS_PLUGIN_model/plugins/fipf_wp_plugin/fipf_wp_hooks.php
2024-02-07 14:39:22 +01:00

22 lines
290 B
PHP

<?php
/*
Plugin Name: fipf_wp_plugin
Plugin URI:
Description:
Author: hugogogo
Version: 1.1.0
Author URI:
*/
include_once(dirname(__FILE__) . '/utils/consolelog.php');
function main_shortcode() {
consolelog("hello from php");
}
add_shortcode('fipf_wp_plugin', 'main_shortcode');
?>