Changeset 1499700
- Timestamp:
- 09/21/2016 01:50:47 PM (10 years ago)
- Location:
- cat-block/trunk
- Files:
-
- 3 edited
-
cat-block.php (modified) (1 diff)
-
includes/functions.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cat-block/trunk/cat-block.php
r1451167 r1499700 4 4 * Plugin URI: http://www.agence-web-cvmh.fr 5 5 * Description: Adds a block (widget or shortcode), which scrolls through the posts in a category. 6 * Version: 2.6. 56 * Version: 2.6.6 7 7 * Author: CVMH solutions 8 8 * Author URI: http://www.agence-web-cvmh.fr -
cat-block/trunk/includes/functions.php
r1451167 r1499700 124 124 endif; 125 125 126 $html .= apply_filters( 'cvmh_catblock_before_title', '', get_the_ID() ); 127 126 128 if ( $args['showtitle'] ) : 127 129 $title = get_the_title(); … … 163 165 $title = ''; 164 166 if ( ! empty( $args['plugintitle'] ) ) : 165 $title = '<h2 class="widget-title decorate">' . $args['plugintitle'] . '</h2>'; 166 endif; 167 167 $title = '<' . apply_filters( 'cvmh_catblock_widget_title_tag', 'h2' ) . ' class="widget-title decorate">' . $args['plugintitle'] . '</' . apply_filters( 'cvmh_catblock_widget_title_tag', 'h2' ) . '>'; 168 endif; 169 170 $after_widget_title = apply_filters( 'cvmh_catblock_after_widget_title', '' ); 171 168 172 $introduction = ''; 169 173 if ( ! empty( $args['introduction'] ) ) : … … 176 180 endif; 177 181 178 $cat_block = '<div>' . $title . $ introduction . $navigation . '<div class="catblock-wrapper" id="catblock_' . $random . '"';182 $cat_block = '<div>' . $title . $after_widget_title . $introduction . $navigation . '<div class="catblock-wrapper" id="catblock_' . $random . '"'; 179 183 $class_slideshow = ''; 180 184 if ( $args['slideshow'] ) : -
cat-block/trunk/readme.txt
r1460621 r1499700 61 61 == Changelog == 62 62 63 = 2.6.6 = 64 * Added: filter cvmh_catblock_before_title 65 * Added: filter cvmh_catblock_widget_title_tag 66 * Added: filter cvmh_catblock_after_widget_title 67 63 68 = 2.6.5 = 64 69 * Added: filter cvmh_cat_block_get_posts_args
Note: See TracChangeset
for help on using the changeset viewer.