Changes between Initial Version and Version 1 of Ticket #26623
- Timestamp:
- 12/15/2013 05:36:28 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #26623
- Property Keywords has-patch added
-
Ticket #26623 – Description
initial v1 15 15 {{{ 16 16 #!div style="font-size: 80%" 17 {{{#!php18 17 [gallery class="foobar"] 19 }}}20 18 }}} 21 19 … … 24 22 {{{ 25 23 #!div style="font-size: 80%" 26 {{{#!php27 24 <div id="gallery-1" class="gallery galleryid-4 gallery-columns-2 gallery-size-thumbnail foobar"> 28 }}}29 25 }}} 30 26 … … 42 38 43 39 {{{ 44 #!div style="font-size: 80%" 45 {{{#!php 40 #!php 46 41 //add a class to the gallery depending on a template tag 47 42 … … 53 48 } 54 49 add_filter('gallery_class', 'gallery_intercept_class', 10, 3); 55 }}}56 50 }}} 57 51 … … 70 64 71 65 {{{ 72 #!div style="font-size: 80%" 73 {{{#!php 66 #!php 74 67 ///change the tag to rather be a ul 75 68 … … 78 71 } 79 72 add_filter('gallery_container_start', 'gallery_intercept_container_start', 10, 4); 80 }}}81 73 }}} 82 74 … … 94 86 95 87 {{{ 96 #!div style="font-size: 80%" 97 {{{#!php 88 #!php 98 89 ///change the closing tag to a ul 99 90 … … 102 93 } 103 94 add_filter('gallery_container_end', 'gallery_intercept_container_end', 10, 3); 104 }}}105 95 }}} 106 96 … … 118 108 119 109 {{{ 120 #!div style="font-size: 80%" 121 {{{#!php 110 #!php 122 111 //do not output any separator 123 112 … … 126 115 } 127 116 add_filter('gallery_column_separator', 'gallery_intercept_separator', 10, 3); 128 }}}129 117 }}}