Bryan Willis

Results 19 comments of Bryan Willis

The `function bsg_loop_row_wrapper_close()` in my example makes me cringe that it's only purpose is to echo a . That can't be the only way... Maybe even putting anonymous functions directly...

[Here's a sandbox/example](http://yoursite.wpengine.com/) of how I'm using it on most of my sites now: While I had every intention of disagreeing at first about not including the `hidden-sm` at first,...

Not sure. I personally wasn't able to get it to work. Most of the other jquery solutions I tried also has some issues. @codekipple for now I ended up [writing...

`.grid-6` gives you a "grid" where all nested `.col` are 1/6 width. `grid-5` would split up the `col` into 5ths so technically this isn't just a 12-column grid since you...

@ixrock Yea that's what I thought you meant. Seems like a great idea. I forked your gist and added an explanation of how it currently works if you want to...

Tested it with `grid col` and nested elements and it seems to be working. http://codepen.io/bootstrapped/pen/KgZvyW?editors=1100

I think another problem is overly complex naming conventions. This issue obviously shows that there is confusion with the current functionality. But also the suggested implementation can quickly get complicated...

Logically seems this would be the best way to include it so it works for IE9 and wont render in IE5: ``` html ```

@QWp6t you might be able to use `PHP_INT_MIN` if you want to make sure the priority is as low as possible. ``` php add_action('generate_rewrite_rules', __NAMESPACE__ . '\\ApacheServerConfig::init', PHP_INT_MIN, 0); ```