Override image maximum width in theme (Using Gutenberg editor)

add_theme_support(‘gutenberg’, [‘wide-images’ => true ]) is telling gutenberg, hey this sites content area’s CSS is setup to handle wide images. The theme_support wide-images code isn’t a magic fix – instead it’s an aknowledgment from the theme developer to gutenberg, that the themes CSS’s ready for gutenberg wide content. — If you’re just experimenting, and only … Read more

Remove Tag from theme support

You can do it with something like this: add_action( ‘init’, ‘wpse48017_remove_tags’ ); function wpse48017_remove_tags() { global $wp_taxonomies; $tax = ‘post_tag’; // this may be wrong, I never remember the names on the defaults if( taxonomy_exists( $tax ) ) unset( $wp_taxonomies[$tax] ); } There was a move to get a function implemented but that hasn’t hit … Read more