viyancs
viyancs

Reputation: 2339

adding new module in wordpress

I'm sorry if my question is not good quality.I have problem when I want to understanding wordpress , I'm new in wordpress, and I want to create some module in wordpress, It's Possible?

ex.

  1. if i want to add module, what must I'm studying in wordpress ?

Upvotes: 0

Views: 4331

Answers (2)

donlaur
donlaur

Reputation: 1287

Joomla usually refers to a module. Writing one in WordPress is considered a plugin. You should start studying the Codex and it will lay what you need to do out for you.

You can find that on the WordPress site at Writing_a_Plugin

WordPress Plugin: A WordPress Plugin is a program, or a set of one or more functions, written in the PHP scripting language, that adds a specific set of features or services to the WordPress weblog, which can be seamlessly integrated with the weblog using access points and methods provided by the WordPress Plugin Application Program Interface (API).

Wishing that WordPress had some new or modified functionality? The first thing to do is to search various WordPress Plugin repositories and sources to see if someone has already created a WordPress Plugin that suits your needs. If not, this article will guide you through the process of creating your own WordPress Plugins.

Upvotes: 3

Thamizhchelvan G
Thamizhchelvan G

Reputation: 90

To develop WP plugins, you must familiar with wordpress hooks and API functions.

You can start learning/exploring from any existing plugins. I had started with "Hello_Dolly" :)

Upvotes: 0

Related Questions