My script accesses an api to populate posts. I can add any errors to the WP_Error class, but can I add success messages to a global variable?
1 Answer
you could test for the absence of an error and then display a success message
if(!is_wp_error( $thing )) echo "yay!!";