Changeset 806679
- Timestamp:
- 11/19/2013 09:18:39 AM (11 years ago)
- Location:
- wp-tiles
- Files:
-
- 1 added
- 4 edited
- 17 copied
Legend:
- Unmodified
- Added
- Removed
-
wp-tiles/tags/0.5.8/readme.txt
r785733 r806679 6 6 Requires at least: 3.4.2 7 7 Tested up to: 3.5.2 8 Stable tag: 0. 68 Stable tag: 0.5.8 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 217 217 == Changelog == 218 218 219 = 0.5.8 = 220 221 * Made plugin compatible with qTranslate 222 219 223 = 0.5.7 = 220 224 -
wp-tiles/tags/0.5.8/wp-tiles-admin.php
r770836 r806679 532 532 foreach ( $default_value as $k => $current ) { 533 533 printf ( "<div style='float:left'><input type='text' value='%s' name='%s' width=140px><br> 534 <textarea style='height:100px;width:140px' id='%s'name='%s'>%s</textarea></div>",534 <textarea style='height:100px;width:140px' name='%s'>%s</textarea></div>", 535 535 $k, 536 536 "{$wp_tiles_settings['option_name']}[{$value['group']}][{$value['name']}][name][]", 537 $current['name'],537 //$current['name'], 538 538 "{$wp_tiles_settings['option_name']}[{$value['group']}][{$value['name']}][field][]", 539 539 $current -
wp-tiles/tags/0.5.8/wp-tiles.class.php
r785733 r806679 110 110 111 111 public function show_tiles( $atts_arg ) { 112 112 113 /** 113 114 * Options and attributes … … 180 181 181 182 </ul> 182 183 <?php if ( $wp_query->max_num_pages > 1 ) : ?>184 <nav id="<?php echo $wptiles_id; ?>-pagination" class="navigation" role="navigation">185 <h3 class="assistive-text"><?php _e( 'Post navigation', 'twentytwelve' ); ?></h3>186 <div class="nav-previous alignleft"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentytwelve' ) ); ?></div>187 <div class="nav-next alignright"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?></div>188 </nav><!-- #<?php echo $html_id; ?> .navigation -->189 <?php endif; ?>190 183 191 184 </div> … … 312 305 $data[] = array( 313 306 "id" => $post->ID, 314 "title" => $post->post_title,307 "title" => apply_filters( 'the_title', $post->post_title ), 315 308 "url" => get_permalink( $post->ID ), 316 309 "byline" => $byline, 317 310 "img" => $this->get_first_image( $post ), 318 311 "color" => $color, 319 "bylineColor" 320 => $this->HexToRGBA( $color, $display_options['bylineOpacity'], true ), 312 "bylineColor" => $this->HexToRGBA( $color, $display_options['bylineOpacity'], true ), 321 313 "hideByline" => $hideByline, 322 314 "categories" => $category_slugs -
wp-tiles/tags/0.5.8/wp-tiles.php
r785733 r806679 4 4 Plugin URI: http://trenvopress.com/ 5 5 Description: Add fully customizable dynamic tiles to your WordPress posts and pages. 6 Version: 0.5. 76 Version: 0.5.8 7 7 Author: Mike Martel 8 8 Author URI: http://trenvopress.com … … 18 18 * @since 0.1 19 19 */ 20 define( 'WPTILES_VERSION', '0.5. 7' );20 define( 'WPTILES_VERSION', '0.5.8' ); 21 21 22 22 /** -
wp-tiles/trunk/readme.txt
r785733 r806679 6 6 Requires at least: 3.4.2 7 7 Tested up to: 3.5.2 8 Stable tag: 0. 68 Stable tag: 0.5.8 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 217 217 == Changelog == 218 218 219 = 0.5.8 = 220 221 * Made plugin compatible with qTranslate 222 219 223 = 0.5.7 = 220 224 -
wp-tiles/trunk/wp-tiles-admin.php
r770836 r806679 532 532 foreach ( $default_value as $k => $current ) { 533 533 printf ( "<div style='float:left'><input type='text' value='%s' name='%s' width=140px><br> 534 <textarea style='height:100px;width:140px' id='%s'name='%s'>%s</textarea></div>",534 <textarea style='height:100px;width:140px' name='%s'>%s</textarea></div>", 535 535 $k, 536 536 "{$wp_tiles_settings['option_name']}[{$value['group']}][{$value['name']}][name][]", 537 $current['name'],537 //$current['name'], 538 538 "{$wp_tiles_settings['option_name']}[{$value['group']}][{$value['name']}][field][]", 539 539 $current -
wp-tiles/trunk/wp-tiles.class.php
r785733 r806679 110 110 111 111 public function show_tiles( $atts_arg ) { 112 112 113 /** 113 114 * Options and attributes … … 180 181 181 182 </ul> 182 183 <?php if ( $wp_query->max_num_pages > 1 ) : ?>184 <nav id="<?php echo $wptiles_id; ?>-pagination" class="navigation" role="navigation">185 <h3 class="assistive-text"><?php _e( 'Post navigation', 'twentytwelve' ); ?></h3>186 <div class="nav-previous alignleft"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentytwelve' ) ); ?></div>187 <div class="nav-next alignright"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?></div>188 </nav><!-- #<?php echo $html_id; ?> .navigation -->189 <?php endif; ?>190 183 191 184 </div> … … 312 305 $data[] = array( 313 306 "id" => $post->ID, 314 "title" => $post->post_title,307 "title" => apply_filters( 'the_title', $post->post_title ), 315 308 "url" => get_permalink( $post->ID ), 316 309 "byline" => $byline, 317 310 "img" => $this->get_first_image( $post ), 318 311 "color" => $color, 319 "bylineColor" 320 => $this->HexToRGBA( $color, $display_options['bylineOpacity'], true ), 312 "bylineColor" => $this->HexToRGBA( $color, $display_options['bylineOpacity'], true ), 321 313 "hideByline" => $hideByline, 322 314 "categories" => $category_slugs -
wp-tiles/trunk/wp-tiles.php
r785733 r806679 4 4 Plugin URI: http://trenvopress.com/ 5 5 Description: Add fully customizable dynamic tiles to your WordPress posts and pages. 6 Version: 0.5. 76 Version: 0.5.8 7 7 Author: Mike Martel 8 8 Author URI: http://trenvopress.com … … 18 18 * @since 0.1 19 19 */ 20 define( 'WPTILES_VERSION', '0.5. 7' );20 define( 'WPTILES_VERSION', '0.5.8' ); 21 21 22 22 /**
Note: See TracChangeset
for help on using the changeset viewer.