How to add a background image to category and display image on category page
You can try this code. It will add a media button which will get the image url. I have commented the parts that I have deleted or added. function my_category_module() { // this action is deprecated //add_action(‘edit_category_form_fields’, ‘add_image_cat’); // Add these actions for edit and add add_action(‘edited_category’, ‘save_image’); add_action(‘create_category’, ‘save_image’); add_action(‘category_edit_form_fields’, ‘edit_image_cat’); } add_action(‘init’, ‘my_category_module’); … Read more