I went through and deactivated plugins. When I left one (Testimonial Rotator) disabled, the error changed. Now I get ‘Error: Not Found’ when I try to save.
I used the Developer tools, and it keeps displaying ‘../wp-admin/admin-ajax.php 404 (Not Found)’ Although the file is there. I am still trying the other debugging options but wanted to give my results so far.
Worked perfectly! Thanks.
Yes, I am posting the code at the bottom of the functions file. And no, no errors display. The site just brings up a blank white page. Then when I go in and remove what I added it loads correctly.
This is what I’m pasting:
add_filter(‘mab_allowed_post_types’, ‘add_cpt_to_mab’);
add_cpt_to_mab($posttypes){
$posttypes[] = ‘the_video’;
return $posttypes;
}
Thanks!