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 761
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 | Aug 16 | Aug 15 | Aug 14 | Aug 13 | Aug 12 | Aug 11 | Aug 10 | Aug 9 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 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 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 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]