【发布时间】:2015-10-27 14:19:09
【问题描述】:
当我尝试打开插件文件时,它给了我一个错误“您没有足够的权限访问此页面”。如何访问我的页面!
这是我的代码!
<?php
/*
Plugin Name: Plugin Display
Plugin URI: http://test.com
Description: Plugin for displaying info
Author: rohail
Version: 1.0
Author URI: http://test.com
*/
add_action('wp', 'prefix_setup_schedule');
/**
* On an early action hook, check if the hook is scheduled - if not, schedule it.
*/
function prefix_setup_schedule() {
if (!wp_next_scheduled('prefix_hourly_event')) {
wp_schedule_event(time(), 'hourly', 'prefix_hourly_event');
}
}
add_action('prefix_hourly_event', 'prefix_do_this_hourly');
/**
* On the scheduled action hook, run a function.
*/
function prefix_do_this_hourly() {
echo "test test";
}
?>
【问题讨论】: