Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. <?php
  2. /**
  3. * Genesis Column Shortcodes.
  4. *
  5. */
  6.  
  7. function one_half_first() {
  8. return '<div class="one-half first">';
  9. }
  10. add_shortcode("one-half-first","one_half_first");
  11.  
  12. function one_half() {
  13. return '<div class="one-half">';
  14. }
  15. add_shortcode('one-half','one_half');
  16.  
  17. function one_third_first() {
  18. return '<div class="one-third first">';
  19. }
  20. add_shortcode("one-third-first","one_third_first");
  21.  
  22. function one_third() {
  23. return '<div class="one-third">';
  24. }
  25. add_shortcode('one-third','one_third');
  26.  
  27. function one_fourth_first() {
  28. return '<div class="one-fourth first">';
  29. }
  30. add_shortcode("one-fourth-first","one_fourth_first");
  31.  
  32. function one_fourth() {
  33. return '<div class="one-fourth">';
  34. }
  35. add_shortcode('one-fourth','one_fourth');
  36.  
  37. function one_fifth_first() {
  38. return '<div class="one-fifth first">';
  39. }
  40. add_shortcode("one-fifth-first","one_fifth_first");
  41.  
  42. function one_fifth() {
  43. return '<div class="one-fifth">';
  44. }
  45. add_shortcode('one-fifth','one_fifth');
  46.  
  47. function two_thirds_first() {
  48. return '<div class="two-thirds first">';
  49. }
  50. add_shortcode('two-thirds-first','two_thirds_first');
  51.  
  52. function two_thirds() {
  53. return '<div class="two-thirds">';
  54. }
  55. add_shortcode('two-thirds','two_thirds');
  56.  
  57. function three_fourths_first() {
  58. return '<div class="three-fourths first">';
  59. }
  60. add_shortcode('three-fourths-first','three_fourths_first');
  61.  
  62. function three_fourths() {
  63. return '<div class="three-fourths">';
  64. }
  65. add_shortcode('three-fourths','three_fourths');
  66.  
  67. function two_fifths_first() {
  68. return '<div class="two-fifths first">';
  69. }
  70. add_shortcode("two-fifths-first","two_fifths_first");
  71.  
  72. function two_fifths() {
  73. return '<div class="two-fifths">';
  74. }
  75. add_shortcode('two-fifths','two_fifths');
  76.  
  77. function three_fifths_first() {
  78. return '<div class="three-fifths first">';
  79. }
  80. add_shortcode('three-fifths-first','three_fifths_first');
  81.  
  82. function three_fifths() {
  83. return '<div class="three-fifths">';
  84. }
  85. add_shortcode('three-fifths','three_fifths');
  86.  
  87. function four_fifths_first() {
  88. return '<div class="four-fifths first">';
  89. }
  90. add_shortcode('four-fifths-first','four_fifths_first');
  91.  
  92. function four_fifths() {
  93. return '<div class="four-fifths">';
  94. }
  95. add_shortcode('four-fifths','four_fifths');
  96.  
  97. function end_col() {
  98. return '</div>';
  99. }
  100. add_shortcode('end-col','end_col');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement