IT Nursery
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....
  • May 27, 2022
  • 0 Comments
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...
  • May 20, 2022
  • 0 Comments
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'...
  • May 19, 2022
  • 0 Comments