By default, when you insert an image into a post, it has some image alignment options (see below).
In my theme I want every image to be full width. Of course, it's easy for me to change the front-end display of the images. But--in terms of usability--I don't want to cause the user to think that they are able to change the alignment. Is it possible to disable those alignment options?
By default, when you insert an image into a post, it has some image alignment options (see below).
In my theme I want every image to be full width. Of course, it's easy for me to change the front-end display of the images. But--in terms of usability--I don't want to cause the user to think that they are able to change the alignment. Is it possible to disable those alignment options?
You could always disable them through css.
E.g.:
.mce-i-dashicon.dashicons-align-left {
display: none;
}