Hola Hansjörg,
Yes, the plugin relies on the REST API to keep track of visits and a couple of other things. Disabling the REST API completely might not be a good idea, not only because WPP needs it but also because WordPress itself is also moving towards using it for everything (eg. the Gutenberg editor).
If you want to disable the REST API for security reasons, installing a security plugin (such as WP Cerber) will allow you to restrict access to it and prevent its misuse.
Hola Hector
thanks for the quick reply. I deactivated it via funtions.php
function remove_api () {
remove_action( 'wp_head', 'rest_output_link_wp_head', 10 );
remove_action( 'wp_head', 'wp_oembed_add_discovery_links', 10 );
}
add_action( 'after_setup_theme', 'remove_api' );
Strange enough. Your Plugin is still working.
Ah, I think that what that code does is remove the REST API links from your theme’s <head> section. If so then it’s all good, the REST API is still working and WPP should be able to do its thing normally.
OK thanks for your quick and professional help