- Variables
- Types (Data type)
- Local vs Global Variables
- Scope of a variable
- Comments
- Single line comment
| admin_init | |
| - register_setting( $option_group, $option_name ) | |
| - add_settings_*() | |
| display hidden fields and security | |
| - settings_fields( $option_group ) [ Same parameter passed to register_setting() ] | |
| display sections | |
| - do_settings_section( $page ) |
| <?php | |
| add_action( 'gform_after_submission', 'upload_photo', 10, 2 ); | |
| function convert_to_attachment( $entry, $form ) { | |
| // ID of the title field | |
| $title = rgar( $entry, 1 ); | |
| // ID of the upload button | |
| $url = rgar( $entry, 2 ); |