https://github.com/kirandash/addplugins
WordPress plugins.
https://github.com/kirandash/addplugins
wordpress wordpress-plugin
Last synced: 2 months ago
JSON representation
WordPress plugins.
- Host: GitHub
- URL: https://github.com/kirandash/addplugins
- Owner: kirandash
- Created: 2017-08-27T11:16:21.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-08T18:09:10.000Z (over 8 years ago)
- Last Synced: 2025-04-07T15:12:02.435Z (about 1 year ago)
- Topics: wordpress, wordpress-plugin
- Language: PHP
- Size: 317 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## 1 Plugin Development Intro & Header Requirements
Turn WP_DEBUG true
Check unique plugin name
Plugin - file name should match the folder name.
## Security Checkups
A. Have index.php - to avoid access to other folders via url - so create a blank index.php page
B. if( !defined( 'ABSPATH' ) ) :
die;
endif;
OR
defined( 'ABSPATH' ) or die( 'Hey! You can not see this file!' );
OR
if( ! function_exists( 'add_action' ) ) {
exit;
}
## WordPress Load Order
1. Configuration file is loaded wp-config.php
2. Functions and classes are loaded
3. Plugins are loaded
4. Process all codes & repeats
5. Load Translations
6. Load Theme
7. Load Page content
## jQuery Rating Plugin
https://github.com/gjunge/rateit.js
## AJAX in Plugins
https://codex.wordpress.org/AJAX_in_Plugins