I am a newbie in Plugin Development. So please correct me, wherever I get wrong.
I have a website which needs a Players Plugin with the following needs:-
- An Admin controllable form for Player registration, with some details of them.
- A listing page where all the registered players are to be shown.
- Registered Players can be deleted & compared with each other.
- Showing some Registered Players (10 random players) in the WordPress theme in the front-end.
I have completed the activation of Plugin, along with database table creation & admin menu options for this Plugin. I have also completed the Player Registration Interface, but without the database insertion code. But all of these have been done using normal procedural way.
I have now two headaches in completing the development of this Plugin:-
- Develop this Plugin in the OOP format, for support to future versions of WordPress.
- Complete the other requirements of this Plugin.
Can anybody please help me out (even with a little knowledge sharing) in how to proceed with the following:-
- Creating WordPress Plugin from scratch using OOP way.
- Calling a web form (like, for Player registration) using OOP.
- Submitting all these player information into the Database using OOP.
- Showing a listing page (like, for registered players & positioning them) using OOP.
- Showing some players in the front-end of the WordPress theme, using either Template Tags or directly with the help of the Plugin.
I have searched the Google, tried to find some information in the Internet about these, but haven't succeeded much with the OOP thing. Please anybody, with any minimal knowledge, help me out.
Thanks in advance.