开发者 |
Godaddy
StarfieldTech kurtpayne asink wpmudev |
---|---|
更新时间 | 2020年10月27日 08:46 |
PHP版本: | 3.3 及以上 |
WordPress版本: | 5.5 |
版权: | GPLv2 |
版权网址: | 版权信息 |
Open the Tools menu, then open P3 Plugin Profiler then click Scan Now.
Warning messages like this: Warning: usort() [function.usort]: Array was modified by the user comparison function
are due to a known php bug. See php bug #50688 for more information. This warning does not affect the functionality of your site and it is not visible to your users.
Previous version of the plugin (before 1.1.0) did not have theme name detection support. If you performed a scan with a previous version, then upgraded to 1.1.0+ to view the scan, the theme name will show as "unknown."
First, get your site back up! There are two ways to do this. Try the emergency shutoff switch first. If that doesn't work, delete the plugin files. Emergency Shutoff Switch
Delete the Plugin FilesPlease check your media settings. This is in Settings -> Media -> Store uploads in this folder. If this folder is not set correctly, P3 won't know where to read the files.
P3 is available on the Tools menu for each site in the network.
You can write a plugin to hook the p3_automatic_scan_urls
filter. Here's some sample code:
function my_p3_auto_scan_pages() {
return array(
'http://example.com/',
'http://example.com/some-cool-post',
'http://example.com/wp-admin/edit.php',
);
}
add_filter( 'p3_automatic_scan_urls', 'my_p3_auto_scan_pages' );