Thanks so much for this! It’s rlaely useful because I’ve been trying to run scripts to schedule posts automatically.It looks like you can’t create new categories on the fly just by supplying the array with new items. If you want to know what categories are already available for you to use, you can use this code (building off of the other code):categories = server.metaWeblog.getCategories(wp_blogid, wp_username, wp_password)for item in categories: print item['description'](Remember to indent the print statement.)
Thanks so much for this! It’s rlaely useful because I’ve been trying to run scripts to schedule posts automatically.It looks like you can’t create new categories on the fly just by supplying the array with new items. If you want to know what categories are already available for you to use, you can use this code (building off of the other code):categories = server.metaWeblog.getCategories(wp_blogid, wp_username, wp_password)for item in categories: print item['description'](Remember to indent the print statement.)