hyunsupul / aesop-core

Open-sourced suite of components that empower interactive storytelling in WordPress.
http://aesopstoryengine.com
GNU General Public License v2.0
245 stars 56 forks source link

Add Custom Galleries #139

Closed bearded-avenger closed 9 years ago

bearded-avenger commented 9 years ago

Add action to let developers add custom gallery types.

add_action('aesop_add_gallery_type', 'my_custom_type');
    function my_custom_type(){
        $type = '<option value="NAME">OPTION NAME</option>';
        echo $type;
    }

image 2014-09-25 at 3 08 43 pm