| Server IP : 69.30.224.78 / Your IP : 216.73.216.115 Web Server : Microsoft-IIS/10.0 System : Windows NT SERVER 10.0 build 14393 (Windows Server 2016) AMD64 User : IWPD_92(newtechtest) ( 0) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Inetpub/vhosts/newtechtest.in/heartcare.newtechtest.in/wp-content/plugins/ranktool/ |
Upload File : |
<?php ob_start();
ini_set('max_execution_time', 1000);
/* Plugin Name: Ranktool
Description: A plugin to Finding domain ranking For multiple domains , use [RANKING-TOOL] shortcode to display tool in a page.
Author: Santosh Mahato
Author URI: http://www.sandeveloper.com/
version: 1.0
*
*/
// Add main menu, hook
add_action('admin_menu','ranktool_menu');
// Add menu page and subpages
function ranktool_menu()
{
// Main menu page
//add_menu_page("Ranktool","Ranktool",8,'rank','process_rule');
}
function process_rule(){
echo "<p> </p>";
echo "<p> </p>";
echo "<strong>Short Code :</strong> [RANKING-TOOL]";
}
function process(){
include(dirname(__FILE__)."/src/seostats.php");
include(dirname(__FILE__)."/html.php");
?>
<?php
}
add_shortcode( 'RANKING-TOOL' , 'process' );
?>