JunDeveloperD
JunDeveloperD

Reputation: 11

Integrate plugin in wordpress and custom wordpress administration panel

I was wondering is these two options are possible:

Best regards.

Upvotes: 1

Views: 59

Answers (1)

ham-sandwich
ham-sandwich

Reputation: 4052

This question is quite broad, so it will get a broad responsive from the SO WordPress community. Also, there is no short answer.

  1. Yes, this is possible. But it requires strong PHP, HTML and CSS knowledge. You can implement custom plugins and widgets into your theme.

https://codex.wordpress.org/Widgets_API#Developing_Widgets https://codex.wordpress.org/Post_Types

  1. Probably yes, but you wouldn't want to do this. It will probably we overriden by future updates to WordPress, and become a disaster to maintain. I suggest the following articles on the WP Codex. Creating Themes for the admin are fine.

https://codex.wordpress.org/Creating_Admin_Themes https://codex.wordpress.org/Customizing_the_Login_Form

Upvotes: 1

Related Questions