How to call a function in wordpress plugin from another site
I create a plugin and install it in any wordpress sites. For any reason I need to call a function on those plugin from another site (not wordpress site).
I've already try to using cURL and file_get_contents to call the function, in some wordpress site it's worked well, but in some another wordpress site it's not working.
It's failed on calling the function because the wordpress site has the redirect URL or the wordpress site has another plugins installed like captcha, security, etc.
These are the code/function in my plugins:
Class Myplugin{
..........
function get_wp_version(){
// to do
}
function call_api(){
if($_GET['get_wp_version'] $_GET['token']){
$wp_version = $this-get_wp_version();
echo $wp_version;
}
}
........
}
And these are the code that I used to call the function from another site:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://mysite.com/?call_api=get_wp_versiontoken=xxx');
curl_setopt($ch, CURLOPT_FRESH_CONNECT, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_AUTOREFERER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
curl_setopt($ch, CURLOPT_TIMEOUT, 0);
$curl_msg = curl_exec($ch);
Any help will be appreciated!
Oops, typo! The functin of my plugin should be like this:
Class Myplugin{
..........
function get_wp_version(){
// to do
}
function call_api(){
if($_GET['call_api'] $_GET['token']){
if($_GET['call_api'] == 'get_wp_version'){
$wp_version = $this-get_wp_version();
echo $wp_version;
}
}
}
........
}
Topic outside-wordpress plugins Wordpress
Category Web