django-wordpress-auth icon indicating copy to clipboard operation
django-wordpress-auth copied to clipboard

Django integration with Wordpress's authentication and roles / capabilities system.

Results 4 django-wordpress-auth issues
Sort by recently updated
recently updated
newest added

- [Fix deprecated library for compatibility with django4](https://github.com/dellis23/django-wordpress-auth/commit/df979ea97e15df7e9d3476291c5ec38993ffd4a2) - [Fix get_site_url for error with wordpress in subfolders](https://github.com/dellis23/django-wordpress-auth/commit/df979ea97e15df7e9d3476291c5ec38993ffd4a2) - [Add wordpress_context_processor for access variables in templates](https://github.com/dellis23/django-wordpress-auth/commit/025a5ba5e8668f388e18b986ffd87e3b4c762275)

Added on_delete attribute to work with newer django versions

I have managed to get the basic @wordpress_logged_in functionality working following the instructions given in the readme. What I need to do next is to synchronise the django username with...

If user is authenticated in wordpress sets the user login in request.META['REMOTE_USER'], this enables Django [remote user authentication mechanism](https://docs.djangoproject.com/en/1.8/howto/auth-remote-user/). As a result you'll have a regular `request.user` available in your...