WordPress Code Reference
Sublime WordPress Code Reference - Search the codebase for documentation build with devhub https://developer.wordpress.org/.
Details
Installs
- Total 8K
- Win 6K
- Mac 1K
- Linux 718
Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | Aug 28 | Aug 27 | Aug 26 | Aug 25 | Aug 24 | Aug 23 | Aug 22 | Aug 21 | Aug 20 | Aug 19 | Aug 18 | Aug 17 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 1 | 0 | 0 | 2 | 1 | 0 | 2 | 2 | 0 | 0 | 0 | 3 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 3 | 1 | 2 | 0 | 1 | 0 | 0 | 2 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 4 | 0 | 1 | 0 | 2 | 1 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 |
Readme
- Source
- raw.githubusercontent.com
Sublime WordPress Code Reference
Sublime WordPress Code Reference - Search the codebase for documentation build with devhub https://developer.wordpress.org/.
Generated from WordPress version 5.1.1
. This WordPress version contain 640
PHP files and this sublime repository auto generate below sublime snippets.
- [x] Constants @maheshwaghmare
- [ ] Functions
- [ ] Actions
- [ ] Filters
Summery
Type | Count |
---|---|
CONSTANTS | 1026 |
CONSTANTS
In WordPress version 5.1.1 there are 1026
CONSTANTS.
Defining Constants
You can define the constants like:
Example 1:
- If you type
WP_INSTAL
.. - Then it show
- On click on it return
define( 'WP_INSTALLING', true );
Example 2:
- If you type
PCLZIP_TEMPORARY
.. - then it show
- On click on it return
define( 'PCLZIP_TEMPORARY_FILE_RATIO', 0.47 );
Using Constants
You can use the constants like:
Example 1:
- If you type
WP_INST
.. - Then it show
- On click on it return
WP_INSTALLING
Example 2:
- If you type
PCLZIP_TEMPORARY
.. - then it show
- On click on it return
PCLZIP_TEMPORARY_FILE_RATIO
[Auto generated by PHPDoc Parser @see https://github.com/maheshwaghmare/phpdoc-parser]