by Mark Wilmoth | Jun 20, 2022 | Uncategorized
If images are added to a blog post and floated to the left or right, the text will wrap around the image. The problem is, if the screen is narrow, it will continue to word wrap down to the last letter. This looks odd, so we want the text to clear the image long before...
by Mark Wilmoth | Jul 27, 2021 | Uncategorized
Add this to your functions.php before exporting posts. It will run the content through the same wpautop() function that’s used to display posts. function codelight_content_export($content) { return wpautop($content); }...