value # from an array of variables names as strings add_var_to_front( compact( "myvar_1", "myvar_2", )); return create_html( array( "index.html", "index2.html", )); } add_shortcode('fipf_wp_plugin', 'main_shortcode'); /* * * * * * * * * * * * * * * * * * * * * * * * * menu plugin */ function plugin_menu() { add_menu_page( 'FIPF wp plugin', // webpage title 'FIPF', // menu title 'manage_options', // capability 'fipf-wp-plugin', // menu_slug 'fipf_wp_plugin_content' // callback function to display page content ); } add_action('admin_menu', 'plugin_menu'); ?>