Ari Stathopoulos
Ari Stathopoulos
Thank you for the ping @Mamaduka! > [border.php](https://github.com/WordPress/gutenberg/blob/trunk/lib/block-supports/border.php) - https://github.com/WordPress/gutenberg/pull/43375 - @aristath > [colors.php](https://github.com/WordPress/gutenberg/blob/trunk/lib/block-supports/colors.php) - https://github.com/WordPress/gutenberg/pull/43375 - @aristath It appears the 1st change has already been applied to wp-trunk (https://github.com/WordPress/wordpress-develop/blob/0cb8475c0d07d23893b1d73d755eda5f12024585/src/wp-includes/block-supports/border.php#L19),...
There are some valid use-cases for anonymous functions in `add_filter` & `add_action`... Take for example something like this: ```php $sidebars = apply_filters( 'my_custom_filter_1', array( 'sidebar_1' => true, 'sidebar_2' => true,...
> could you add an example of how you can use remove_filter() to remove that callback from 'my_custom_filter_2'? :) There is no way that I know of. The point I...
If you check the contents of the CSS in https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&subset=cyrillic&display=swap, you'll see that it contains CSS & files for all subsets. The same thing happens when you remove the subset...
A few notes on that last iteration: * Does the "include sticky items" exclude sitckies when not checked? Or does it simply return them to their normal position, unsticking them?...
> I'm really unfamiliar with taxonomies, but are you imagining a dropdown that allows me to select between categories, tags, or taxonomies? Or just having them all lumped together? I'm...
I still feel that the tag-selector would be a more suitable UI element for this... This block will have way too many settings, so making the UI a bit shorter...
I can think of 2 options: 1. Use columns and multiple query blocks, each one with a different offset to get the 1st, 2nd, 3rd etc posts. 2. custom class...
This is a bad idea for many reasons, but it's still an idea, and hasn't been mentioned before (probably because everyone knows it's too bad of an idea to warrant...
I assume you're referring to this comment? > writing templates with inline php. > when saved, it becomes static because it doesn't make sense to mix dynamic and static (edited...