eewee-img
The Eewee responsive design eewee img shortcode.
Usage
- // basic usage
- echo do_shortcode('[eewee-img]');
- // variable usage
- $result = do_shortcode('[eewee-img]');
- echo $result;
Defined (1)
The shortcode is defined in the following location(s).
- /inc/controllers/ShortcodeController.php
- /* init des shortcodes
- */
- public function initAction() {
- add_shortcode('eewee-alert', array($this, 'eewee_shortcode_alert'));
- add_shortcode('eewee-btn', array($this, 'eewee_shortcode_btn'));
- add_shortcode('eewee-img', array($this, 'eewee_shortcode_img'));
- add_shortcode('eewee-color', array($this, 'eewee_shortcode_color'));
- add_shortcode('eewee-bq', array($this, 'eewee_shortcode_blockquote'));
- add_shortcode('eewee-dl', array($this, 'eewee_shortcode_description_dl'));
- add_shortcode('eewee-dt', array($this, 'eewee_shortcode_description_dt'));
- add_shortcode('eewee-dd', array($this, 'eewee_shortcode_description_dd'));