2.4k questions

2.4k answers

99.5k users

Categories

0 votes
86 views

Why is flexibility WordPress’s technological superpower?
in WordPress by (95.8k points)

1 Answer

0 votes

This allows developers to write code completely outside WordPress, and then have it run at certain times and places inside WordPress. You can dramatically change the functionality of the platform as well as edit the output from nearly any part of the site.

(Google)

Another reason is that is open you can use:

  1. Bootstrap or any othe CSS framework
  2. cooperate with whatever you need

in order to create a theme or an app (plugin)

You can speak with database with

  1. wp_query and the family commands
  2. directly with other DB access commands

You can create forms to communicate with DB or

  1. with form plugins or other Gui generators
  2. or with pure PHP

and many more because it is open

by (95.8k points)
...