Just adds the link. The plugin currently never blocks access to the WP Login Page. I am working on adding a way to customize with a filter. But for now, no it does not. Let me know if any further questions, etc. Glad to help anytime.
Thread Starter
MarkJ
(@forusak)
Alright, I will be awaiting for this feature 🙂
That’s all
Hey Marek, looking again at this, the functionality already exists in the current version of Blackhole. Just add the following code to theme or child theme’s functions.php file (or add via simple custom plugin):
function blackhole_ignore_login($ignore) { return false; }
add_filter('blackhole_ignore_login', 'blackhole_ignore_login');
If you get locked out inadvertently, simply remove the code and the Login Page will be accessible once again.