- Table of contents
- General information
- Terms
- General structure of a test
- WordPress-specific assertions and test functions
- enqueues
- creating posts
- creating terms
- attaching images
- ?
| <?php | |
| /** | |
| * Plugin Name: Elementor Widget | |
| * Text Domain: elementor-widget | |
| * Domain Path: /languages | |
| * Version: 0.1.0 | |
| * | |
| * @package Elementor_Widget | |
| */ |
| // Must be in an external file or loaded at the end of wp_footer() | |
| jQuery(document).ajaxSend(function(e, x, a) { | |
| var awesome = 1; | |
| a.data += '&' + jQuery.param( {is_awesome: awesome} ); | |
| }); |