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
1

you could test for the absence of an error and then display a success message

if(!is_wp_error( $thing )) echo "yay!!";

Leave a Reply

Your email address will not be published. Required fields are marked *