Changeset 1224034
- Timestamp:
- 08/18/2015 07:41:21 PM (11 years ago)
- Location:
- magazine-columns/trunk
- Files:
-
- 2 edited
-
magazine-columns.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
magazine-columns/trunk/magazine-columns.php
r608036 r1224034 5 5 Description: Divides your post or page content into two or more columns, like a magazine article. 6 6 Author: c.bavota 7 Version: 1.0. 67 Version: 1.0.7 8 8 Author URI: http://www.bavotasan.com/ 9 9 License: GPL2 10 10 */ 11 11 12 /* Copyright 201 2c.bavota (email : [email protected])12 /* Copyright 2015 c.bavota (email : [email protected]) 13 13 14 14 This program is free software; you can redistribute it and/or modify … … 63 63 64 64 foreach( $col_content as $column ) { 65 $output = '<div class="column c' . $count. '">' . $column . '</div>';66 $output = str_replace( '<div class="column c' . $count . '"><br />', '<div class="column c' . $count. '"><p>', $output );65 $output = '<div class="column c' . esc_attr( $count ) . '">' . $column . '</div>'; 66 $output = str_replace( '<div class="column c' . esc_attr( $count ) . '"><br />', '<div class="column c' . esc_attr( $count ) . '"><p>', $output ); 67 67 $content .= $output; 68 68 } -
magazine-columns/trunk/readme.txt
r608036 r1224034 4 4 Tags: magazine columns, multiple post columns, columns, magazine, post columns, page columns 5 5 Requires at least: 2.7 6 Tested up to: 3.4.27 Stable tag: 1.0. 66 Tested up to: 4.3 7 Stable tag: 1.0.7 8 8 9 9 Divides your post or page content into two or more columns, like a magazine article. … … 39 39 40 40 == Change Log == 41 42 Version 1.0.7 (2015-8-18) 43 <ul> 44 <li>Added validation</li> 45 <li>Updated version and stable tag</li> 46 </ul> 41 47 42 48 Version 1.0.6 (2012-10-04)
Note: See TracChangeset
for help on using the changeset viewer.