Problem parsing long parameter in shortcode

After tinkering obsessively, I have solved the problem. As stated above, this is the failing shortcode entered in the post [product product_sell_price=$765 product_description=20”x16” oil on stretched linen. Varnished for protection and ease of cleaning. Includes the frame as shown and is ready to hang.] This is the shortcode that works perfectly: [product product_sell_price=$765 product_description=’20”x16” oil … Read more

Does WordPress has an automatic link parse function?

There is make_clickable which is applied as a filter on comment_text but not on post/page content. You could add it as a filter with… add_filter(‘the_content’,’make_clickable’); Untested. I have not idea how well that will behave. There may or may not be conflicts with already defined URLs, or other markup. I haven’t investigated that. Be aware.