22 lines
290 B
PHP
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');
|
|
|
|
?>
|