Advertisement
srikat

Untitled

May 2nd, 2017
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. function minimum_grid_loop_helper() {
  2.  
  3. if ( function_exists( 'genesis_grid_loop' ) ) {
  4.  
  5. genesis_grid_loop( array(
  6. 'features' => 0,
  7. 'feature_image_size' => 0,
  8. 'feature_content_limit' => 0,
  9. 'grid_image_size' => 0,
  10. 'grid_content_limit' => 250,
  11. 'more' => __( '[Read more]', 'minimum' ),
  12. ) );
  13.  
  14. } else {
  15.  
  16. genesis_standard_loop();
  17.  
  18. }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement