Skip to content

Instantly share code, notes, and snippets.

@knaveenchand
knaveenchand / excel2post.php
Created May 4, 2022 06:18 — forked from ganmahmud/excel2post.php
Excel file (.csv) to WP post Plugin
<?php
add_action('admin_menu', 'excel2post_plugin_setup_menu');
function excel2post_plugin_setup_menu(){
add_menu_page('Shoppers Mag CSV Import Page', 'Shoppers Mag CSV Import', 'manage_options', 'csv-import', 'e2p', "dashicons-image-rotate-right", 2);
}
function e2p(){