I have a shortcode that just retrieves some info from the options table in the database.
For whatever reason, when the content reaches a certain character limit the_content() to return blank?
The function is pretty basic and I can't for the life me figure out why this is happening?
Here's an example of the code:
function my_custom_shortcode() { return get_option('my_custom_shortcode'); }
add_shortcode('MYSHORTCODE', 'my_custom_shortcode');
Has anyone experienced this before? Thanks!