I’m building a quite complex custom post type structure and I would need some help regarding my metaboxes. What I want to do: Thank’s to the have_fields_and_multi() function, the...
I’m currently using WP Super Edit. But the same problem persists with TinyMCE Advanced. This is how it is configured: View post on imgur.com View post on imgur.com View...
Looking for a way to make the TinyMCE editor always relative to it’s content so that the height of the editor changes accordingly to how much text/images it contains....
Using WP 4.0. I thought that the html5 schema was supposed to be turned on by default. That would mean that clicking the B (Bold) button would generate a...
I’m on WP 4.6, which has tinyMCE 4. I need to make the contents of my post editor visual tab more WYSIWYG. I’m attaching a CSS file containing my...
I have a post type with 7 (count it SEVEN!) taxonomy tag boxes. By default, the only options to display these metaboxes are – 7 small metaboxes on the...
Going crazy with this. Can’t figure out if this is normal behavior. I have added a filter to rewrite image inserts to use <figure> and <figcaption>. Works well. However,...
I’m beginning to like Gutenberg, but I find it too narrow, particularly when working with the ‘Columns’ block. Why is it so narrow, and can it safely be made...
I’ve created a very nice custom post type using the fantastic ACF plugin, but now I need a way for users to submit posts from the front end. Plugins...
I added a custom column to a custom post type: add_filter('manage_posts_columns', 'custom_columns', 10); add_action('manage_posts_custom_column', 'custom_columns_thumb', 10, 2); function custom_columns($columns) { $columns = array( 'cb' => '<input type="checkbox" />', 'title'...