Changeset 966057
- Timestamp:
- 08/14/2014 10:16:27 PM (12 years ago)
- Location:
- smpl-shortcodes/trunk
- Files:
-
- 2 edited
-
includes/shortcodes.php (modified) (2 diffs)
-
smpl-shortcodes.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
smpl-shortcodes/trunk/includes/shortcodes.php
r956915 r966057 63 63 break; 64 64 65 case 'five_sixth' : 66 $class .= 'five_sixth'; 67 break; 68 65 69 case 'one_fourth' : 66 70 $class .= 'one_fourth'; 67 71 break; 68 72 73 case 'two_sixth' : 69 74 case 'one_third' : 70 75 $class .= 'one_third'; 71 76 break; 72 77 78 case 'three_sixth' : 73 79 case 'one_half' : 74 80 $class .= 'one_half'; 75 81 break; 76 82 83 case 'four_sixth' : 77 84 case 'two_third' : 78 85 case 'two_thirds' : … … 134 141 case 'one_sixth_last' : 135 142 $class .= 'one_sixth last'; 143 break; 144 145 case 'two_sixth_last' : 146 $class .= 'two_sixth last'; 147 break; 148 149 case 'three_sixth_last' : 150 $class .= 'three_sixth last'; 151 break; 152 153 case 'four_sixth_last' : 154 $class .= 'four_sixth last'; 155 break; 156 157 case 'five_sixth_last' : 158 $class .= 'five_sixth last'; 136 159 break; 137 160 -
smpl-shortcodes/trunk/smpl-shortcodes.php
r956915 r966057 80 80 // Columns -- @todo clean this mess up, and create single [column] shortcode 81 81 add_shortcode( 'one_sixth', 'smpl_shortcode_column' ); // 1/6 82 add_shortcode( 'two_sixth', 'smpl_shortcode_column' ); // 2/6 83 add_shortcode( 'three_sixth', 'smpl_shortcode_column' ); // 3/6 84 add_shortcode( 'four_sixth', 'smpl_shortcode_column' ); // 4/6 85 add_shortcode( 'five_sixth', 'smpl_shortcode_column' ); // 5/6 82 86 add_shortcode( 'one_fourth', 'smpl_shortcode_column' ); // 1/4 83 87 add_shortcode( 'one_third', 'smpl_shortcode_column' ); // 1/3 … … 112 116 add_shortcode( 'four_fifth_last', 'smpl_shortcode_legacy_column_last' ); // 4/5 113 117 add_shortcode( 'four_fifths_last', 'smpl_shortcode_legacy_column_last' ); // 4/5 118 add_shortcode( 'two_sixth_last', 'smpl_shortcode_column' ); // 2/6 119 add_shortcode( 'three_sixth_last', 'smpl_shortcode_column' ); // 3/6 120 add_shortcode( 'four_sixth_last', 'smpl_shortcode_column' ); // 4/6 121 add_shortcode( 'five_sixth_last', 'smpl_shortcode_column' ); // 5/6 114 122 115 123 // Components
Note: See TracChangeset
for help on using the changeset viewer.