Redirect loops in Bing holding my sites back

RESOLVED: Even though I had resolved those issues, it wasn’t giving me an updated report. All of the data it was displaying was the old, though it still won’t refresh or update to the current. I’ve confirmed through two separate sources and they both say it’s okay.

Is there a way to get wp_editor (tinymce) content?

I can’t comment yet… so I will use an answer, I think you need to do it with ‘wp_insert_post_data’ filter. You can see this in line 3523 here: https://developer.wordpress.org/reference/functions/wp_insert_post/ Your function need to have a parameter, which is an array. From there you should get the content from ‘post_content’ key. add_filter( ‘wp_insert_post_data’, ‘example’ ); function … Read more