我有一个插件文件 testplugin.php ..它包含变量 $abc;
//主插件.php
if(!is_admin()){
new Funtion_Button();
}
class Function_Button
{
if(is_single() || is_page() || is_home() ){
global $post;
global $wpdb;
$query_images_args = array(
'post_type' => 'attachment' , 'post_mime_type' =>'image','post_status' => 'published', 'posts_per_page' => -1,'numberposts' => 1
$query_images = new WP_Query( $query_images_args );
$images = array();
foreach ( $query_images->posts as $image) {
$images[]= wp_get_attachment_url( $image->ID );
}
$abc[]=0;
$abc= $abc.http_build_query($images);
$_SESSION['arrayImg']=$abc;
);
}
///接收文件
include ('testplugin.php');
session_start();
$array1[]=$abc;
现在这个 $abc 来自主插件页面
但我收到了这个错误
致命错误:在第 98 行调用 C:\wamp\www\wordpress\wp-content\plugins\testplugin.php 中的未定义函数 is_admin()
在 98 线上我有 if(!is_admin()){