What is "wordpress"
Wordpress is a web-based content management system (CMS) application, written in php with database mysql, focused mainly on the creation of websites and blogs. This tag includes questions about development and modification of themes and plugins, and extension of your source code.
It’s the same software used in the blogging service Wordpress.with and in premium service Wordpress.com VIP, but in the Wordpress.org the main difference is access to source code, installation in virtually all companies of hosting and be able to add components (plugins and themes) freely to the site.
Questions regarding the service offered by Wordpress.com should be asked on company forum.
Commune
- Wordpress.org
Official website with forum and where you can download the source code for installation, plugins and themes. - Wordpress Developers
Web site Stack Exchange dedicated to Wordpress. - Make Wordpress
Blogs and official resources to help developers. - Wordpress Mailing Lists
21 lists to discuss almost all aspects of the platform. - Wordpress Trac
Bug tracker, useful for keeping abreast of the latest changes - and for reporting bugs. - Wordpress Chat
Here one can sometimes get help very fast. - Wordpress Brazil in G+
Documentation
- Developer Resources Updated and automated version of the documentation contained in Codex, divided into large sections to search for references in construction of themes and plugins, in addition to a complete reference to the source code and specific guides to the REST API and the automation tool WP-CLI
- Wordpress Codex Wiki documentation with tutorials, references and links. This documentation is being migrated to Developer Resources and may be outdated.
- Installing the Wordpress
Installing and starting with Wordpress. - Writing a Plugin
Plugins allow the easy modification, customization and enhancement of a Wordpress site. Instead of changing the Wordpress source code, you can add functionality with Plugins. - Wordpress Multisite
Wiki tag in WPSE, starting point.
##Other resources
###Recommended Questions in Wordpress Developers Extracted from the page of Frequently Asked Questions in the Wordpress Developers.
When should you use Wp_query vs query_posts() vs get_posts()?
UseWP_Query
for custom loops,get_posts
for functions and plugins, and neverquery_posts
.How to fix pagination for custom loops?
Frequent error.Where to put my code: plugin or functions.php?
Use plugins properly and avoid polluting the filefunctions.php
code that doesn’t belong there.Verifying that I have Fully Removed a Wordpress hack?
Illustrious question from the founder of Stack Overflow. Complete steps to recover from a hack.$ not defined using jQuery in Wordpress
Error that frequently appears in the OS and WPSE. Simply encapsulate the code injQuery(document).ready(function($){ /* seu código */ });
.Where is the right place to Register/enqueue scripts & Styles
A very common flaw when developing plugins and themes.Steps to Take to Hide the Fact a Site is Using Wordpress?
Miscellaneous techniques. Little can be done in the back end with respect to the path/wp-admin
and the material to make administrative themes is scarce. It is possible to hide almost everything in the fron-tend.
###Recommended Questions in Stack Overflow
How to Adapt my plugin to Multisite?
Particularities of a plugin made for Multisite.How to Use AJAX in a Wordpress Shortcode?
OOP example of how to load and configure AJAX to work on frontend.