Thomas Kräftner
Thomas Kräftner
@ChaseWiseman This sounds like a great idea. This way we could have the `post_content` as a basic mandatory field for instructions while having another standard for how separate steps are...
@justintadlock Well but there is a difference between short summary `post_excerpt`, recipe in plain text `post_content` and structured step-by-step instructions `?`
Okay we are going 'round in circles here as I do believe that there _is_ a difference between plain text instructions and a step-by-step guide trough a recipe. But I'll...
@justintadlock Can you put the source file somewhere? My issue is a completely different one and it would be great to use the same image to simplify the process and...
What is your issue with this and how else would you solve it? We need some kind of multi-word separator and `singular-portfolio-project` is way harder to read if you ask...
You could work around this, but I feel it is cleaner if this is handled internally, anyway; ``` add_filter('gc_allowed_grids', function( $allowed_grids ) { return array( 2, 3 ); }); add_filter('gc_column_args',...
Okay I thought this through some more and I think I need to explain this in more detail. The current behaviour just sticks with the last valid grid if an...
Okay another idea. What if we add this: ``` if ( ! in_array( $this->grid, $this->allowed_grids ) ) { $this->grid = $defaults['grid']; } ``` right after [the line that sets the...
As I am hitting this again on a current project - any thoughts?
Well by default you can [choose between 2, 3, 4, 5 or 12 columns](https://github.com/justintadlock/grid-columns/blob/b7ad4f0dc0a12faffc468984291dd8788f131a2b/grid-columns.php#L87). As this doesn't always make sense, say my theme only works and therefore accepts 2 and...