How do I make a wordpress plugin with menu item etc
If you want a frontend page you’ll have to create one with your plugin’s shortcode as the content. Then you display your plugin’s output in-place of that shortcode: /* Plugin Name: WPSE67438 Page plugin */ class wpse67438_plugin { const PAGE_TITLE = ‘WPSE67438’; //set the page title here. const SHORTCODE = ‘WPSE67438’; //set custom shortcode here. … Read more