• I would like to use the WP REST API for the membership implementation including the sign up page, login page, logout page, password reset page and sending an email verification token to a new user.

    I’ve installed the ultimate member plugin that can do all of the above except that all of the pages live in the wordpress ecosystem.

    My goal is to use the Angular front end pages with the WP REST API to sign up new user, login, logout or manage password.

    Can anyone advise how to implement the membership workflow for an headless wordpress with angular?

    • This topic was modified 1 year, 10 months ago by aboudrame.
Viewing 1 replies (of 1 total)
  • Moderator bcworkz

    (@bcworkz)

    You can manage WP users through the /users API endpoint. Core WP does not implement the “membership” concept in its entirety. How you want to extend default functionality is up to you. You can alter the default roles and capabilities to suit your needs, as well as assign user meta data as appropriate. You could even implement custom DB tables that integrate with the wp_users table.

    To use the /users endpoint, your requests need to be properly authenticated. I recommend using an applications password to do so, though there are other methods if you prefer.

Viewing 1 replies (of 1 total)
  • The topic ‘headless wordpress with angular for membership’ is closed to new replies.