Well, this weird codes showed up …
This,
The Word Became Flesh – (John 1:1-18) KJV
.
Became this, after export / import:
The Word Became Flesh – (John 1:1-18) KJV
.
So I will put this code “temporarily” on the functions file of my WP Theme. (Yup it was temporary because the code below didn’t work! LOL!)
add_filter('the_content', function($content) {
// Fix encoded double quotes
$content = str_replace('"', '"', $content);
// Fix URL-encoded closing quotes
$content = str_replace('"', '"', $content);
return $content;
});
.
This one worked:
// Theme snippet to fix audio shortcode quotes on display
add_filter('the_content', fn($content) => str_replace(['"','"'], '"', $content));
.
SOLVED: So now you see two audio files instead of just one.
Sample why it is important…
Click here:
https://www.christianlifegroups.org/the-word-became-flesh-john-11-18-kjv/
Each Topic, story, has a Text File (for the d/Deaf community) and the Audio File (for the Blind Community also). I will be creating another Audio Bible that is not “plugin dependent” – I already wrote the codes last week and will just have to upload each and every file, but that will be “future-proofing it”, so even if I switch webhosts, or if I graduate from life or something, the next full stack developer who would inherit this project can have documentation on how I built this. (With God’s help! 🙂 )
