WordPress to ColdFusion

2014-03-23 Thread Rick Eidson
So I have a client that is in a WordPress Site but we are moving to a customized site using ColdFusion. I am going to use the database that WP used. So my problem. The br tag. WordPress's editor will remove the BR tag and it doesn't store it in the database. Now I have done some

Re: WordPress to ColdFusion

2014-03-23 Thread Jerry Milo Johnson
There is a filter that gets run on the_content (and the_excerpt), called wpautop https://codex.wordpress.org/Function_Reference/wpautop it looks for 2 carriage returns in a row, and converts them to a p You should be able to either add this to your output (it is actually a pretty good idea ...