Codin2012 Posted November 9, 2017 Share Posted November 9, 2017 I am building a PHP CMS of my own. And my question is how does Wordpress design their dashboard so that when you click a link you do not leave the dashboard but the link you clicked opens the page right there in the dashboard. All help appreciated. Quote Link to comment Share on other sites More sharing options...
Solution gizmola Posted November 9, 2017 Solution Share Posted November 9, 2017 There is no magic to it, it's javascript/ajax. With that said, in the last few years, javascript frameworks have developed a tremendous amount of momentum. Essentially this moves a lot of the code from the backend into a client javascript application. Typically the backend becomes an api providing access to data via REST or SOAP. I don't see a lot of people using SOAP anymore. Wordpress has been all in on the use of ReactJS, even to the extent that they announced they would abandon its use due to Facebook's plan to utilize a BSD + Patents license. Ultimately, Facebook bowed to the pressure and threats to abandon it and changed the ReactJS license to MIT. At any rate ReactJS, Angular, Ember, Vue etc. are all quite prevalent in the current web development world, and provide the sexy interactive UI you are talking about. The underlying technology that anchors all of these technologies is still Javascript/Ecmascript and Ajax which facilitates actively changing the UI without having to GET/POST the entire page and rebuild it from scratch. 1 Quote Link to comment Share on other sites More sharing options...
Codin2012 Posted December 9, 2017 Author Share Posted December 9, 2017 Thank very much for your answer that helped a lot. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.