Can I get the role of the currentUser in modern WordPress React?
You can achieve this with the help of useSelect hook and select(‘core’).getCurrentUser() here is the sample component for you. import { useSelect } from ‘@wordpress/data’; const CurrentUserComponent = () => { const { currentUser } = useSelect((select) => ({ currentUser: select(‘core’).getCurrentUser(), }), []); // Here we are checking if currentUser is available or not. if … Read more